summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorRyan Leckey <leckey.ryan@gmail.com>2018-07-02 15:41:14 -0700
committerRyan Leckey <leckey.ryan@gmail.com>2018-07-02 15:41:14 -0700
commite9354383d9dcd5d7fc9fd8539b3ef37b3e6a8645 (patch)
tree1d1883b422824d9e12076755117bc7c8c9eb918b /CHANGELOG.md
parentcbb9ef88ea6f6452614dd8bbffce7203b1358a55 (diff)
Update readme/changelog for 0.9
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6fc38aa..889a965 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
+## 0.9.0 - 2018-07-02
+ - **Breaking Change:** Environment does not declare a separator by default.
+ ```rust
+ // 0.8.0
+ Environment::with_prefix("APP")
+
+ // 0.9.0
+ Environment::with_prefix("APP").separator("_")
+ ```
+
+ - Add support for INI. [#72]
+ - Add support for newtype structs. [#71]
+ - Fix bug with array set by path. [#69]
+ - Update to nom 4. [#63]
+
+[#72]: https://github.com/mehcode/config-rs/pull/72
+[#71]: https://github.com/mehcode/config-rs/pull/71
+[#69]: https://github.com/mehcode/config-rs/pull/69
+[#63]: https://github.com/mehcode/config-rs/pull/63
+
## 0.8.0 - 2018-01-26
- Update lazy_static and yaml_rust