Skip to content

Commit

Permalink
Bump to 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
QEDK committed Jun 23, 2020
1 parent 7ed4c7d commit df35a02
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "configparser"
version = "0.9.1"
version = "0.9.2"
authors = ["QEDK <[email protected]>"]
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."
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Essentially, the syntax consists of sections, each of which can which contains k
You can install this easily via `cargo` by including it in your `Cargo.toml` file like:
```TOML
[dependencies]
configparser = "0.9.1"
configparser = "0.9.2"
```

## Supported datatypes
Expand Down Expand Up @@ -185,6 +185,9 @@ Old changelogs are in [CHANGELOG.md](CHANGELOG.md).
- Make more docs pass tests
- 0.9.1
- Hotfix to change getters to return `Ok(None)` instead of failing parsing for `None` values
- 0.9.2
- Added `getboolcoerce()` function to parse more `bool`-like values.
- Convert some snippets to doctests.

### Future plans

Expand Down

0 comments on commit df35a02

Please sign in to comment.