Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
palkan committed Apr 14, 2020
1 parent ae529f7 commit 719d5a0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change log

## master
## 2.0.0 (2020-04-14)

- Fix double `yield` in tracing for ENV loader. ([@Envek][])

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
```
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/anyway/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Anyway # :nodoc:
VERSION = "2.0.0.rc1"
VERSION = "2.0.0"
end

0 comments on commit 719d5a0

Please sign in to comment.