From e6fa7b31957e799f4697dfdca7bda6f94571601a Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 17 Mar 2021 17:45:16 +0100 Subject: Replace travis-ci badge with maintenance badge Signed-off-by: Matthias Beyer --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f0f75b6..6a423cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ categories = ["config"] license = "MIT/Apache-2.0" [badges] -travis-ci = { repository = "mehcode/config-rs" } +maintenance = { status = "actively-developed" } [features] default = ["toml", "json", "yaml", "hjson", "ini"] -- cgit v1.2.3 From 2615439506c7620e0d11c8c52ba70bf7f14fe15a Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 17 Mar 2021 17:48:10 +0100 Subject: Update version in usage example Signed-off-by: Matthias Beyer --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0025e5d..243b42c 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ ```toml [dependencies] -config = "0.10" +config = "0.11" ``` - `ini` - Adds support for reading INI files -- cgit v1.2.3 From 6cc1a2dfe4fa51ab6532d3ea6eda1a28a26f6343 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 17 Mar 2021 17:45:53 +0100 Subject: Update version: 0.10.1 -> 0.11.0 Signed-off-by: Matthias Beyer --- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7171e72..05bfeca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ 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.11.0 - 2021-03-17 + - The `Config` type got a builder-pattern `with_merged()` method [#166]. + - A `Config::set_once()` function was added, to set an value that can be + overwritten by `Config::merge`ing another configuration [#172] + - serde_hjson is, if enabled, pulled in without default features. + This is due to a bug in serde_hjson, see [#169] for more information. + - Testing is done on github actions [#175] + +[#166]: https://github.com/mehcode/config-rs/pull/166 +[#172]: https://github.com/mehcode/config-rs/pull/172 +[#169]: https://github.com/mehcode/config-rs/pull/169 +[#175]: https://github.com/mehcode/config-rs/pull/169 + ## 0.10.1 - 2019-12-07 - Allow enums as configuration keys [#119] diff --git a/Cargo.toml b/Cargo.toml index 6a423cb..ae6e770 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "config" -version = "0.10.1" +version = "0.11.0" 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