Skip to content

Commit 92ceec0

Browse files
committed
Prepare 2.0.0.pre
1 parent a9990e8 commit 92ceec0

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change log
22

3-
## 2.0.0-dev
3+
## 2.0.0.pre (2019-04-26)
44

55
- **BREAKING** Changed the way of providing explicit values. ([@palkan][])
66

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33

44
# Anyway Config
55

6+
**NOTE:** this readme shows doc for the upcoming 2.0 version (`2.0.0.pre` is available on RubyGems).
7+
For version 1.x see [1-4-stable branch](https://github.com/palkan/anyway_config/tree/1-4-stable).
8+
69
Rails/Ruby plugin/application configuration tool which allows you to load parameters from different sources: YAML, Rails secrets/credentials, environment.
710

811
Allows you to easily follow the [twelve-factor application](https://12factor.net/config) principles and adds zero complexity to your development process.
@@ -27,7 +30,7 @@ Libraries using Anyway Config:
2730
# my-cool-gem.gemspec
2831
Gem::Specification.new do |spec|
2932
# ...
30-
spec.add_dependency "anyway_config", "~> 2.0"
33+
spec.add_dependency "anyway_config", "2.0.0.pre"
3134
# ...
3235
end
3336
```
@@ -36,7 +39,7 @@ end
3639

3740
```ruby
3841
# Gemfile
39-
gem "anyway_config", "~> 2.0"
42+
gem "anyway_config", "2.0.0.pre"
4043
```
4144

4245
3) Install globally:

lib/anyway/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Anyway # :nodoc:
4-
VERSION = "1.4.3"
4+
VERSION = "2.0.0.pre"
55
end

0 commit comments

Comments
 (0)