Skip to content

Commit a3d0047

Browse files
committed
chore: Release
1 parent cc37615 commit a3d0047

7 files changed

Lines changed: 23 additions & 14 deletions

File tree

Cargo.lock

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

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.2] - 2026-04-01
11+
1012
### Fixes
1113

1214
- *(parser)* For unquoted keys, report a span over all contigious invalid characters, rather than insertion points before each byte
@@ -512,7 +514,8 @@ Changes:
512514
Minor doc fix (#409)
513515

514516
<!-- next-url -->
515-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v1.1.1...HEAD
517+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v1.1.2...HEAD
518+
[1.1.2]: https://github.com/toml-rs/toml/compare/toml-v1.1.1...toml-v1.1.2
516519
[1.1.1]: https://github.com/toml-rs/toml/compare/toml-v1.1.0...toml-v1.1.1
517520
[1.1.0]: https://github.com/toml-rs/toml/compare/toml-v1.0.7...toml-v1.1.0
518521
[1.0.7]: https://github.com/toml-rs/toml/compare/toml-v1.0.6...toml-v1.0.7

crates/toml/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml"
3-
version = "1.1.1+spec-1.1.0"
3+
version = "1.1.2+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,7 +51,7 @@ 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.1", path = "../toml_parser", default-features = false, features = ["alloc"], optional = true }
54+
toml_parser = { version = "1.1.2", 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 }

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.10] - 2026-04-01
11+
1012
### Fixes
1113

1214
- *(parser)* For unquoted keys, report a span over all contigious invalid characters, rather than insertion points before each byte
@@ -995,7 +997,8 @@ This release was sponsored by Futurewei
995997
- `array.push` now returns a `Result`.
996998

997999
<!-- next-url -->
998-
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.25.9...HEAD
1000+
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.25.10...HEAD
1001+
[0.25.10]: https://github.com/toml-rs/toml/compare/v0.25.9...v0.25.10
9991002
[0.25.9]: https://github.com/toml-rs/toml/compare/v0.25.8...v0.25.9
10001003
[0.25.8]: https://github.com/toml-rs/toml/compare/v0.25.7...v0.25.8
10011004
[0.25.7]: https://github.com/toml-rs/toml/compare/v0.25.6...v0.25.7

crates/toml_edit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml_edit"
3-
version = "0.25.9+spec-1.1.0"
3+
version = "0.25.10+spec-1.1.0"
44
description = "Yet another format-preserving TOML parser."
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
keywords = ["encoding", "toml"]
@@ -45,7 +45,7 @@ serde_core = { version = "1.0.228", optional = true }
4545
toml_datetime = { version = "1.1.1", path = "../toml_datetime" }
4646
serde_spanned = { version = "1.1.1", path = "../serde_spanned", features = ["serde"], optional = true }
4747
toml_writer = { version = "1.1.1", path = "../toml_writer", optional = true }
48-
toml_parser = { version = "1.1.1", path = "../toml_parser", optional = true }
48+
toml_parser = { version = "1.1.2", 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.2] - 2026-04-01
11+
1012
### Fixes
1113

1214
- For unquoted keys, report a span over all contigious invalid characters, rather than insertion points before each byte
@@ -94,7 +96,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
9496
## [1.0.0] - 2025-07-08
9597

9698
<!-- next-url -->
97-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_parser-v1.1.1...HEAD
99+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_parser-v1.1.2...HEAD
100+
[1.1.2]: https://github.com/toml-rs/toml/compare/toml_parser-v1.1.1...toml_parser-v1.1.2
98101
[1.1.1]: https://github.com/toml-rs/toml/compare/toml_parser-v1.1.0...toml_parser-v1.1.1
99102
[1.1.0]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.10...toml_parser-v1.1.0
100103
[1.0.10]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.9...toml_parser-v1.0.10

crates/toml_parser/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_parser"
3-
version = "1.1.1+spec-1.1.0"
3+
version = "1.1.2+spec-1.1.0"
44
description = "Yet another format-preserving TOML parser."
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
keywords = ["encoding", "toml", "no_std"]

0 commit comments

Comments
 (0)