diff --git a/CHANGELOG.md b/CHANGELOG.md index d4681758..940a8759 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [2.3.0] - 2017-09-26 + ### Added - Added the ability to pass additional loggers when instantiating a `::Timber::Logger`. @@ -44,7 +46,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. instead of applying back pressure. -[Unreleased]: https://github.com/timberio/timber-ruby/compare/v2.2.3...HEAD +[Unreleased]: https://github.com/timberio/timber-ruby/compare/v2.3.0...HEAD +[2.3.0]: https://github.com/timberio/timber-ruby/compare/v2.2.2...v2.3.0 [2.2.2]: https://github.com/timberio/timber-ruby/compare/v2.2.2...v2.2.3 [2.2.2]: https://github.com/timberio/timber-ruby/compare/v2.2.1...v2.2.2 [2.2.1]: https://github.com/timberio/timber-ruby/compare/v2.2.0...v2.2.1 diff --git a/README.md b/README.md index d5c90973..0d47166d 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ you more productive. 1. In your `Gemfile`, add the `timber` gem: ```ruby - gem 'timber', '~> 2.1' + gem 'timber', '~> 2.3' ``` 2. In your `shell`, run: diff --git a/lib/timber/version.rb b/lib/timber/version.rb index 0b6521b5..d8b6d9f1 100644 --- a/lib/timber/version.rb +++ b/lib/timber/version.rb @@ -1,3 +1,3 @@ module Timber - VERSION = "2.2.3" + VERSION = "2.3.0" end