From afffd2efd36a1974ae4c5437d9cd8665d2c3ab19 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 13 Apr 2022 17:58:48 +0200 Subject: Add changelog for 0.13.1 Signed-off-by: Matthias Beyer --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d30ca0..d086c72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## 0.13.1 - 2022-04-13 + + - typo in doc comment for ConfigBuilder [#299] + - dot in config file name handling fixed [#306] + +[#299]: https://github.com/mehcode/config-rs/pull/299 +[#306]: https://github.com/mehcode/config-rs/pull/306 + ## 0.13.0 - 2022-04-03 - Prefix-Seperator support was added [#292] -- cgit v1.2.3 From 409f7fbe13571c876c3a1a068051e24a8c8da7ba Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 13 Apr 2022 17:59:06 +0200 Subject: Update config version in README Signed-off-by: Matthias Beyer --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 245c3ae..18f0914 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ values back to the configuration file(s)! ```toml [dependencies] -config = "0.13" +config = "0.13.1" ``` ### Feature flags -- cgit v1.2.3 From 129d761adae109c10cbe56e330096b06e90fcc77 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 13 Apr 2022 17:59:19 +0200 Subject: Update version in Cargo.toml Signed-off-by: Matthias Beyer --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 49d3c22..994531f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "config" -version = "0.13.0" +version = "0.13.1" description = "Layered configuration system for Rust applications." homepage = "https://github.com/mehcode/config-rs" repository = "https://github.com/mehcode/config-rs" -- cgit v1.2.3