CHANGELOG.md in anyway_config-1.3.1 vs CHANGELOG.md in anyway_config-1.4.0

- old
+ new

@@ -1,9 +1,34 @@ # Change log ## master +## 1.4.0 (2018-10-29) + +- Add OptionParse integration ([@jastkand][]) + + See more https://github.com/palkan/anyway_config/pull/18 + +- Use underscored config name as an env prefix. ([@palkan][]) + + For a config class: + + ```ruby + class MyApp < Anyway::Config + end + ``` + + Before this change we use `MYAPP_` prefix, now it's `MY_APP_`. + + You can specify the prefix explictly: + + ```ruby + class MyApp < Anyway::Config + env_prefix "MYAPP_" + end + ``` + ## 1.3.0 (2018-06-15) - Ruby 2.2 is no longer supported. - `Anyway::Config.env_prefix` method is introduced. ([@charlie-wasp][]) @@ -65,5 +90,6 @@ [@palkan]: https://github.com/palkan [@onemanstartup]: https://github.com/onemanstartup [@dsalahutdinov]: https://github.com/dsalahutdinov [@charlie-wasp]: https://github.com/charlie-wasp +[@jastkand]: https://github.com/jastkand