CHANGELOG.md in envied-0.8.1 vs CHANGELOG.md in envied-0.8.2

- old
+ new

@@ -1,24 +1,49 @@ ## unreleased +... + +## 0.8.2 / 2017-02-21 + ### Added + * Rails 5 support + +### Fixed + + * Envfile: type string is also correctly implied when providing a default. + +## 0.8.1 / 2014-10-18 + +### Added + * the `check` task uses ENV['ENVIED_GROUPS'] as default groups-option if present ### Fixed + * Rails: you can use ENVied now in config/application.rb and config/environments/*.rb + + For existing projects: rerun the `init:rails`-task + * running `check:heroku` takes Heroku's value of ENVIED_GROUPS into account * calling `enable_defaults!` without arguments now does what it says +### Deprecated + + * doing `ENVied.require` in `config/initializers/envied.rb` (as previously generated by `init:rails`-task) + is not recommended anymore. It triggers a deprecation warning. + + It's recommended to rerun the `init:rails`-task. + ## 0.8.0 / 2014-10-04 ### Added * the `check:heroku:binstub` task uses ENV['HEROKU_APP'] as app-option if present * the `check` and `check:heroku` task now have a `--quiet` option - This prevents output on STDOUT for a successful check. + This prevents output on STDOUT for a successful check. Handy for wrapper-scripts: # some bash-script 'ensure-env' #!/usr/bin/env bash bundle exec envied check --quiet --groups default && $@ @@ -112,11 +137,11 @@ ## 0.4.0 / 2014-05-16 * groups added - This allows for more fine-grained requiring. + This allows for more fine-grained requiring. See the section in the [README](https://github.com/eval/envied/tree/v0.4.0#groups). * configuring is now simpler: ENVied.configure { variable :RACK_ENV } @@ -127,10 +152,10 @@ Just like requiring groups with Bundler. * Deprecate lowercase methods for uppercase ENV-variables. - `ENV['RACK_ENV']` is no longer accessible as `ENVied.rack_env`, only as `ENVied.RACK_ENV`. + `ENV['RACK_ENV']` is no longer accessible as `ENVied.rack_env`, only as `ENVied.RACK_ENV`. This is not only what you would expect, but it also reduces the chance of clashing with existing class-methods. ## 0.3.0 / 2014-03-14 * defaults need to be enabled explicitly: