README.md in anyway_config-2.0.0.rc1 vs README.md in anyway_config-2.0.0
- old
+ new
@@ -16,12 +16,12 @@
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
- [Main concepts](#main-concepts)
- [Installation](#installation)
@@ -76,19 +76,19 @@
```ruby
# 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
```
Or adding to your project:
```ruby
# Gemfile
-gem "anyway_config", "2.0.0.rc1"
+gem "anyway_config", "~> 2.0.0"
```
### Supported Ruby versions
- Ruby (MRI) >= 2.5.0