Skip to content

Commit 817b378

Browse files
Merge pull request #177 from matthiasbeyer/prepare-0.11
Version 0.11.0
2 parents 356f173 + 6cc1a2d commit 817b378

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## 0.11.0 - 2021-03-17
8+
- The `Config` type got a builder-pattern `with_merged()` method [#166].
9+
- A `Config::set_once()` function was added, to set an value that can be
10+
overwritten by `Config::merge`ing another configuration [#172]
11+
- serde_hjson is, if enabled, pulled in without default features.
12+
This is due to a bug in serde_hjson, see [#169] for more information.
13+
- Testing is done on github actions [#175]
14+
15+
[#166]: https://github.com/mehcode/config-rs/pull/166
16+
[#172]: https://github.com/mehcode/config-rs/pull/172
17+
[#169]: https://github.com/mehcode/config-rs/pull/169
18+
[#175]: https://github.com/mehcode/config-rs/pull/169
19+
720
## 0.10.1 - 2019-12-07
821
- Allow enums as configuration keys [#119]
922

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "config"
3-
version = "0.10.1"
3+
version = "0.11.0"
44
description = "Layered configuration system for Rust applications."
55
homepage = "https://github.com/mehcode/config-rs"
66
repository = "https://github.com/mehcode/config-rs"
@@ -11,7 +11,7 @@ categories = ["config"]
1111
license = "MIT/Apache-2.0"
1212

1313
[badges]
14-
travis-ci = { repository = "mehcode/config-rs" }
14+
maintenance = { status = "actively-developed" }
1515

1616
[features]
1717
default = ["toml", "json", "yaml", "hjson", "ini"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
```toml
2727
[dependencies]
28-
config = "0.10"
28+
config = "0.11"
2929
```
3030

3131
- `ini` - Adds support for reading INI files

0 commit comments

Comments
 (0)