Skip to content

Commit 2a6e75c

Browse files
committed
feat: bump version
1 parent e1418c6 commit 2a6e75c

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "configparser"
3-
version = "3.0.2"
3+
version = "3.0.3"
44
authors = ["QEDK <[email protected]>"]
55
edition = "2021"
66
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."
@@ -19,4 +19,4 @@ maintenance = { status = "actively-developed" }
1919

2020
[dependencies]
2121
async-std = { version = "1.12.0", optional = true }
22-
indexmap = { version = "1.9.1", optional = true }
22+
indexmap = { version = "2.1.0", optional = true }

LICENSE-LGPL

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
Copyright (c) 2023 QEDK
2+
13
GNU LESSER GENERAL PUBLIC LICENSE
24
Version 3, 29 June 2007
35

@@ -162,4 +164,4 @@ General Public License ever published by the Free Software Foundation.
162164
whether future versions of the GNU Lesser General Public License shall
163165
apply, that proxy's public statement of acceptance of any version is
164166
permanent authorization for you to choose that version for the
165-
Library.
167+
Library.

LICENSE-MIT

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 QEDK
3+
Copyright (c) 2023 QEDK
44

55
Permission is hereby granted, free of charge, to any
66
person obtaining a copy of this software and associated
@@ -24,4 +24,4 @@ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2424
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2525
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
2626
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27-
DEALINGS IN THE SOFTWARE.
27+
DEALINGS IN THE SOFTWARE.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# configparser
2-
[![Build Status](https://github.com/QEDK/configparser-rs/actions/workflows/rust.yaml/badge.svg)](https://github.com/QEDK/configparser-rs/actions/workflows/rust.yaml) [![Crates.io](https://img.shields.io/crates/l/configparser?color=black)](LICENSE-MIT) [![Crates.io](https://img.shields.io/crates/v/configparser?color=black)](https://crates.io/crates/configparser) [![Released API docs](https://docs.rs/configparser/badge.svg)](https://docs.rs/configparser) [![Maintenance](https://img.shields.io/maintenance/yes/2022)](https://github.com/QEDK/configparser-rs)
2+
[![Build Status](https://github.com/QEDK/configparser-rs/actions/workflows/rust.yaml/badge.svg)](https://github.com/QEDK/configparser-rs/actions/workflows/rust.yaml) [![Crates.io](https://img.shields.io/crates/l/configparser?color=black)](LICENSE-MIT) [![Crates.io](https://img.shields.io/crates/v/configparser?color=black)](https://crates.io/crates/configparser) [![Released API docs](https://docs.rs/configparser/badge.svg)](https://docs.rs/configparser) [![Maintenance](https://img.shields.io/maintenance/yes/2023)](https://github.com/QEDK/configparser-rs)
33

44
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.
55

@@ -29,7 +29,7 @@ strings as well as files.
2929
You can install this easily via `cargo` by including it in your `Cargo.toml` file like:
3030
```TOML
3131
[dependencies]
32-
configparser = "3.0.2"
32+
configparser = "3.0.3"
3333
```
3434

3535
## ➕ Supported datatypes

0 commit comments

Comments
 (0)