Skip to content

Commit

Permalink
Bump to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
QEDK committed Jun 13, 2020
1 parent d07f42c commit f8bbd96
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 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.5.0"
version = "0.5.1"
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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ spaces in values=allowed as well
spaces around the delimiter = also OK

[All values are strings]
values like this: 0000
or this: 0.999
are they treated as numbers? : no
integers, floats and booleans are held as: strings
values like this= 0000
or this= 0.999
are they treated as numbers? = no
integers, floats and booleans are held as= strings

[value-less?]
a_valueless_key_has_None
this key has an empty string value like Some("") =
this key has an empty string value has Some("") =

[indented sections]
can_values_be_as_well = True
Expand All @@ -71,7 +71,7 @@ or property key) is the one that remains in the `HashMap`.
You can install this easily via `cargo` by including it in your `Cargo.toml` file like:
```TOML
[dependencies]
configparser = "0.5.0"
configparser = "0.5.1"
```

## Usage
Expand Down
10 changes: 5 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ spaces in values=allowed as well
spaces around the delimiter = also OK
[All values are strings]
values like this: 0000
or this: 0.999
are they treated as numbers? : no
integers, floats and booleans are held as: strings
values like this= 0000
or this= 0.999
are they treated as numbers? = no
integers, floats and booleans are held as= strings
[value-less?]
a_valueless_key_has_None
this key has an empty string value like Some("") =
this key has an empty string value has Some("") =
[indented sections]
can_values_be_as_well = True
Expand Down

0 comments on commit f8bbd96

Please sign in to comment.