Skip to content

Commit 9db8aad

Browse files
committed
chore: Release
1 parent e55a663 commit 9db8aad

13 files changed

Lines changed: 47 additions & 29 deletions

File tree

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/serde_spanned/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [1.1.1] - 2026-03-31
11+
1012
## [1.1.0] - 2026-03-23
1113

1214
### Compatibility
@@ -93,7 +95,8 @@ MSRV is now 1.64.0
9395
## [0.6.0] - 2023-01-20
9496

9597
<!-- next-url -->
96-
[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v1.1.0...HEAD
98+
[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v1.1.1...HEAD
99+
[1.1.1]: https://github.com/toml-rs/toml/compare/serde_spanned-v1.1.0...serde_spanned-v1.1.1
97100
[1.1.0]: https://github.com/toml-rs/toml/compare/serde_spanned-v1.0.4...serde_spanned-v1.1.0
98101
[1.0.4]: https://github.com/toml-rs/toml/compare/serde_spanned-v1.0.3...serde_spanned-v1.0.4
99102
[1.0.3]: https://github.com/toml-rs/toml/compare/serde_spanned-v1.0.2...serde_spanned-v1.0.3

crates/serde_spanned/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "serde_spanned"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = "Serde-compatible spanned Value"
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
keywords = ["serde", "span"]

crates/toml/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [1.1.1] - 2026-03-31
11+
1012
### Fixes
1113

1214
- *(parser)* Remove stack overflow with *many* `=` in a row
@@ -506,7 +508,8 @@ Changes:
506508
Minor doc fix (#409)
507509

508510
<!-- next-url -->
509-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v1.1.0...HEAD
511+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v1.1.1...HEAD
512+
[1.1.1]: https://github.com/toml-rs/toml/compare/toml-v1.1.0...toml-v1.1.1
510513
[1.1.0]: https://github.com/toml-rs/toml/compare/toml-v1.0.7...toml-v1.1.0
511514
[1.0.7]: https://github.com/toml-rs/toml/compare/toml-v1.0.6...toml-v1.0.7
512515
[1.0.6]: https://github.com/toml-rs/toml/compare/toml-v1.0.5...toml-v1.0.6

crates/toml/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml"
3-
version = "1.1.0+spec-1.1.0"
3+
version = "1.1.1+spec-1.1.0"
44
description = """
55
A native Rust encoder and decoder of TOML-formatted files and streams. Provides
66
implementations of the standard Serialize/Deserialize traits for TOML data to
@@ -51,13 +51,13 @@ preserve_order = ["dep:indexmap", "std"]
5151
[dependencies]
5252
serde_core = { version = "1.0.228", default-features = false, features = ["alloc"], optional = true }
5353
indexmap = { version = "2.13.0", default-features = false, optional = true }
54-
toml_parser = { version = "1.1.0", path = "../toml_parser", default-features = false, features = ["alloc"], optional = true }
54+
toml_parser = { version = "1.1.1", path = "../toml_parser", default-features = false, features = ["alloc"], optional = true }
5555
winnow = { version = "1.0.0", default-features = false, optional = true }
5656
anstream = { version = "1.0.0", optional = true }
5757
anstyle = { version = "1.0.14", optional = true }
58-
toml_datetime = { version = "1.1.0", path = "../toml_datetime", default-features = false, features = ["alloc"] }
59-
toml_writer = { version = "1.1.0", path = "../toml_writer", default-features = false, features = ["alloc"], optional = true }
60-
serde_spanned = { version = "1.1.0", path = "../serde_spanned", default-features = false, features = ["alloc"] }
58+
toml_datetime = { version = "1.1.1", path = "../toml_datetime", default-features = false, features = ["alloc"] }
59+
toml_writer = { version = "1.1.1", path = "../toml_writer", default-features = false, features = ["alloc"], optional = true }
60+
serde_spanned = { version = "1.1.1", path = "../serde_spanned", default-features = false, features = ["alloc"] }
6161
foldhash = { version = "0.2.0", default-features = false, optional = true }
6262

6363
[dev-dependencies]

crates/toml_datetime/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [1.1.1] - 2026-03-31
11+
1012
## [1.1.0] - 2026-03-23
1113

1214
### Compatibility
@@ -131,7 +133,8 @@ MSRV is now 1.64.0
131133
## [0.5.0] - 2022-10-21
132134

133135
<!-- next-url -->
134-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v1.1.0...HEAD
136+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v1.1.1...HEAD
137+
[1.1.1]: https://github.com/toml-rs/toml/compare/toml_datetime-v1.1.0...toml_datetime-v1.1.1
135138
[1.1.0]: https://github.com/toml-rs/toml/compare/toml_datetime-v1.0.1...toml_datetime-v1.1.0
136139
[1.0.1]: https://github.com/toml-rs/toml/compare/toml_datetime-v1.0.0...toml_datetime-v1.0.1
137140
[1.0.0]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.5...toml_datetime-v1.0.0

crates/toml_datetime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml_datetime"
3-
version = "1.1.0+spec-1.1.0"
3+
version = "1.1.1+spec-1.1.0"
44
description = "A TOML-compatible datetime type"
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
keywords = ["encoding", "toml", "no_std"]

crates/toml_edit/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.25.9] - 2026-03-31
11+
1012
### Features
1113

1214
- Add `ArrayOfTables::replace`
@@ -989,7 +991,8 @@ This release was sponsored by Futurewei
989991
- `array.push` now returns a `Result`.
990992

991993
<!-- next-url -->
992-
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.25.8...HEAD
994+
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.25.9...HEAD
995+
[0.25.9]: https://github.com/toml-rs/toml/compare/v0.25.8...v0.25.9
993996
[0.25.8]: https://github.com/toml-rs/toml/compare/v0.25.7...v0.25.8
994997
[0.25.7]: https://github.com/toml-rs/toml/compare/v0.25.6...v0.25.7
995998
[0.25.6]: https://github.com/toml-rs/toml/compare/v0.25.5...v0.25.6

crates/toml_edit/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml_edit"
3-
version = "0.25.8+spec-1.1.0"
3+
version = "0.25.9+spec-1.1.0"
44
description = "Yet another format-preserving TOML parser."
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
keywords = ["encoding", "toml"]
@@ -42,10 +42,10 @@ unbounded = []
4242
indexmap = { version = "2.13.0", features = ["std"] }
4343
winnow = { version = "1.0.0", optional = true }
4444
serde_core = { version = "1.0.228", optional = true }
45-
toml_datetime = { version = "1.1.0", path = "../toml_datetime" }
46-
serde_spanned = { version = "1.1.0", path = "../serde_spanned", features = ["serde"], optional = true }
47-
toml_writer = { version = "1.1.0", path = "../toml_writer", optional = true }
48-
toml_parser = { version = "1.1.0", path = "../toml_parser", optional = true }
45+
toml_datetime = { version = "1.1.1", path = "../toml_datetime" }
46+
serde_spanned = { version = "1.1.1", path = "../serde_spanned", features = ["serde"], optional = true }
47+
toml_writer = { version = "1.1.1", path = "../toml_writer", optional = true }
48+
toml_parser = { version = "1.1.1", path = "../toml_parser", optional = true }
4949
anstream = { version = "1.0.0", optional = true }
5050
anstyle = { version = "1.0.14", optional = true }
5151

crates/toml_parser/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [1.1.1] - 2026-03-31
11+
1012
### Fixes
1113

1214
- Remove stack overflow with *many* `=` in a row
@@ -88,7 +90,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
8890
## [1.0.0] - 2025-07-08
8991

9092
<!-- next-url -->
91-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_parser-v1.1.0...HEAD
93+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_parser-v1.1.1...HEAD
94+
[1.1.1]: https://github.com/toml-rs/toml/compare/toml_parser-v1.1.0...toml_parser-v1.1.1
9295
[1.1.0]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.10...toml_parser-v1.1.0
9396
[1.0.10]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.9...toml_parser-v1.0.10
9497
[1.0.9]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.8...toml_parser-v1.0.9

0 commit comments

Comments
 (0)