diff --git a/CHANGELOG.md b/CHANGELOG.md index fd2ce82b..51e4b2f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change log -## master +## 2.0.0 (2020-04-14) - Fix double `yield` in tracing for ENV loader. ([@Envek][]) diff --git a/README.md b/README.md index b6f93f50..63f0c4ee 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ For application developers, Anyway Config could be useful to: - **Keep configuration organized** and use _named configs_ instead of bloated `.env`/`settings.yml`/whatever. - **Free code of ENV/credentials/secrets dependency** and use configuration classes instead—your code should not rely on configuration data sources. -**NOTE:** this readme shows documentation for the upcoming 2.0 version (`2.0.0.rc1` is available on RubyGems). -For version 1.x see [1-4-stable branch](https://github.com/palkan/anyway_config/tree/1-4-stable). +**NOTE:** this readme shows documentation for 2.x version. +For version 1.x see the [1-4-stable branch](https://github.com/palkan/anyway_config/tree/1-4-stable). ## Table of contents @@ -78,7 +78,7 @@ Adding to a gem: # my-cool-gem.gemspec Gem::Specification.new do |spec| # ... - spec.add_dependency "anyway_config", "2.0.0.rc1" + spec.add_dependency "anyway_config", ">= 2.0.0" # ... end ``` @@ -87,7 +87,7 @@ Or adding to your project: ```ruby # Gemfile -gem "anyway_config", "2.0.0.rc1" +gem "anyway_config", "~> 2.0.0" ``` ### Supported Ruby versions diff --git a/lib/anyway/version.rb b/lib/anyway/version.rb index d5b4f9be..2c9dcc8b 100644 --- a/lib/anyway/version.rb +++ b/lib/anyway/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Anyway # :nodoc: - VERSION = "2.0.0.rc1" + VERSION = "2.0.0" end