diff --git a/Cargo.toml b/Cargo.toml index 7e30466..cee4dae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "configparser" -version = "0.11.1" +version = "0.12.0" authors = ["QEDK "] edition = "2018" description = "A simple configuration parsing utility with no dependencies that allows you to parse INI and ini-style syntax. You can use this to write Rust programs which can be customized by end users easily." diff --git a/README.md b/README.md index cfd4d71..03af79d 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ strings as well as files. You can install this easily via `cargo` by including it in your `Cargo.toml` file like: ```TOML [dependencies] -configparser = "0.11.1" +configparser = "0.12.0" ``` ## Supported datatypes @@ -190,6 +190,9 @@ Old changelogs are in [CHANGELOG.md](CHANGELOG.md). - Hotfix to remove hardcoded default section and use set default section. - Enabled auto-trait implementation of `Default` for empty inits. - Added the `sections()` method to get a vector of sections. +- 0.12.0 + - New function added, `writes()` to support writing configuration to a string. + - More doctests passed. ### Future plans