summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Leckey <ryan@launchbadge.com>2018-09-25 23:48:15 -0700
committerRyan Leckey <ryan@launchbadge.com>2018-09-25 23:48:15 -0700
commit18e0199a7b3a31b0f42b04a31c5cc14a26caa7a0 (patch)
treed397d76e9ba494889f201acfcfc01ce9c2b920cb
parenta7bf3ed027cd7f53f29bb7229ae6b58de7bf23d2 (diff)
parent57a4e301617f126634f59aeec04a2b3d5a632818 (diff)
Merge branch 'master' of https://github.com/mehcode/config-rs
-rw-r--r--CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 889a965..defa9e6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,15 @@ 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.1 - 2018-09-25
+ - Allow Environment variable collection to ignore empty values. [#78]
+ ```rust
+ // Empty env variables will not be collected
+ Environment::with_prefix("APP").ignore_empty(true)
+ ```
+
+[#78]: https://github.com/mehcode/config-rs/pull/78
+
## 0.9.0 - 2018-07-02
- **Breaking Change:** Environment does not declare a separator by default.
```rust