You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Cargo.toml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[package]
2
2
name = "configparser"
3
-
version = "3.0.2"
3
+
version = "3.0.3"
4
4
authors = ["QEDK <qedk.en@gmail.com>"]
5
5
edition = "2021"
6
6
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."
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# configparser
2
-
[](https://github.com/QEDK/configparser-rs/actions/workflows/rust.yaml)[](LICENSE-MIT)[](https://crates.io/crates/configparser)[](https://docs.rs/configparser)[](https://github.com/QEDK/configparser-rs)
2
+
[](https://github.com/QEDK/configparser-rs/actions/workflows/rust.yaml)[](LICENSE-MIT)[](https://crates.io/crates/configparser)[](https://docs.rs/configparser)[](https://github.com/QEDK/configparser-rs)
3
3
4
4
This crate provides the `Ini` struct which implements a basic configuration language which provides a structure similar to what’s found in Windows' `ini` files. You can use this to write Rust programs which can be customized by end users easily.
5
5
@@ -29,7 +29,7 @@ strings as well as files.
29
29
You can install this easily via `cargo` by including it in your `Cargo.toml` file like:
30
30
```TOML
31
31
[dependencies]
32
-
configparser = "3.0.2"
32
+
configparser = "3.0.3"
33
33
```
34
34
35
35
## ➕ Supported datatypes
@@ -201,10 +201,6 @@ additional terms or conditions.
201
201
## 🆕 Changelog
202
202
203
203
Old changelogs are in [CHANGELOG.md](CHANGELOG.md).
204
-
- 2.0.0
205
-
-**BREAKING** Added Python-esque support for `:` as a delimiter.
206
-
-:new: Add support for case-sensitive maps with automatic handling under the hood.
207
-
-:hammer: Fixed buggy setters which went uncaught, to preserve case-insensitive nature.
208
204
- 2.0.1
209
205
- Add first-class support for setting, loading and reading defaults
210
206
- New available struct `IniDefault` for fast templating
@@ -221,10 +217,14 @@ Old changelogs are in [CHANGELOG.md](CHANGELOG.md).
221
217
- Uses `CRLF` line endings for Windows files.
222
218
- Bumps crate to 2021 edition.
223
219
- Adds features to CI pipeline.
224
-
- 3.0.2 (**STABLE**)
220
+
- 3.0.2
225
221
- Adds support for multi-line key-value pairs.
226
222
- Adds `async-std` feature for asynchronous file operations.
0 commit comments