Skip to content

Commit e32c7a2

Browse files
committed
chore: Release
1 parent df1c328 commit e32c7a2

10 files changed

Lines changed: 33 additions & 21 deletions

File tree

Cargo.lock

Lines changed: 7 additions & 7 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+
## [0.9.10] - 2025-12-18
11+
1012
### Features
1113

1214
- TOML 1.1 parse support
@@ -427,7 +429,8 @@ Changes:
427429
Minor doc fix (#409)
428430

429431
<!-- next-url -->
430-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.9.9...HEAD
432+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.9.10...HEAD
433+
[0.9.10]: https://github.com/toml-rs/toml/compare/toml-v0.9.9...toml-v0.9.10
431434
[0.9.9]: https://github.com/toml-rs/toml/compare/toml-v0.9.8...toml-v0.9.9
432435
[0.9.8]: https://github.com/toml-rs/toml/compare/toml-v0.9.7...toml-v0.9.8
433436
[0.9.7]: https://github.com/toml-rs/toml/compare/toml-v0.9.6...toml-v0.9.7

crates/toml/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml"
3-
version = "0.9.9+spec-1.1.0"
3+
version = "0.9.10+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,12 +51,12 @@ preserve_order = ["dep:indexmap", "std"]
5151
[dependencies]
5252
serde_core = { version = "1.0.225", default-features = false, features = ["alloc"], optional = true }
5353
indexmap = { version = "2.11.4", default-features = false, optional = true }
54-
toml_parser = { version = "1.0.5", path = "../toml_parser", default-features = false, features = ["alloc"], optional = true }
54+
toml_parser = { version = "1.0.6", path = "../toml_parser", default-features = false, features = ["alloc"], optional = true }
5555
winnow = { version = "0.7.13", default-features = false, optional = true }
5656
anstream = { version = "0.6.20", optional = true }
5757
anstyle = { version = "1.0.11", optional = true }
58-
toml_datetime = { version = "0.7.4", path = "../toml_datetime", default-features = false, features = ["alloc"] }
59-
toml_writer = { version = "1.0.5", path = "../toml_writer", default-features = false, features = ["alloc"], optional = true }
58+
toml_datetime = { version = "0.7.5", path = "../toml_datetime", default-features = false, features = ["alloc"] }
59+
toml_writer = { version = "1.0.6", path = "../toml_writer", default-features = false, features = ["alloc"], optional = true }
6060
serde_spanned = { version = "1.0.4", path = "../serde_spanned", default-features = false, features = ["alloc"] }
6161
foldhash = { version = "0.2.0", default-features = false, optional = true }
6262

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+
## [0.7.5] - 2025-12-18
11+
1012
### Features
1113

1214
- TOML 1.1 support
@@ -111,7 +113,8 @@ MSRV is now 1.64.0
111113
## [0.5.0] - 2022-10-21
112114

113115
<!-- next-url -->
114-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.4...HEAD
116+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.5...HEAD
117+
[0.7.5]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.4...toml_datetime-v0.7.5
115118
[0.7.4]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.3...toml_datetime-v0.7.4
116119
[0.7.3]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.2...toml_datetime-v0.7.3
117120
[0.7.2]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.1...toml_datetime-v0.7.2

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 = "0.7.4+spec-1.1.0"
3+
version = "0.7.5+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/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ unbounded = []
4242
indexmap = { version = "2.11.4", features = ["std"] }
4343
winnow = { version = "0.7.13", optional = true }
4444
serde_core = { version = "1.0.225", optional = true }
45-
toml_datetime = { version = "0.7.4", path = "../toml_datetime" }
45+
toml_datetime = { version = "0.7.5", path = "../toml_datetime" }
4646
serde_spanned = { version = "1.0.4", path = "../serde_spanned", features = ["serde"], optional = true }
47-
toml_writer = { version = "1.0.5", path = "../toml_writer", optional = true }
48-
toml_parser = { version = "1.0.5", path = "../toml_parser", optional = true }
47+
toml_writer = { version = "1.0.6", path = "../toml_writer", optional = true }
48+
toml_parser = { version = "1.0.6", path = "../toml_parser", optional = true }
4949
anstream = { version = "0.6.20", optional = true }
5050
anstyle = { version = "1.0.11", 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.0.6] - 2025-12-18
11+
1012
### Features
1113

1214
- TOML 1.1 support
@@ -48,7 +50,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
4850
## [1.0.0] - 2025-07-08
4951

5052
<!-- next-url -->
51-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.5...HEAD
53+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.6...HEAD
54+
[1.0.6]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.5...toml_parser-v1.0.6
5255
[1.0.5]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.4...toml_parser-v1.0.5
5356
[1.0.4]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.3...toml_parser-v1.0.4
5457
[1.0.3]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.2...toml_parser-v1.0.3

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.0.5+spec-1.1.0"
3+
version = "1.0.6+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"]

crates/toml_writer/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.0.6] - 2025-12-18
11+
1012
### Features
1113

1214
- Mark compatibility with TOML 1.1 spec (no changes needed)
@@ -56,7 +58,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
5658
Initial release
5759

5860
<!-- next-url -->
59-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_writer-v1.0.5...HEAD
61+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_writer-v1.0.6...HEAD
62+
[1.0.6]: https://github.com/toml-rs/toml/compare/toml_writer-v1.0.5...toml_writer-v1.0.6
6063
[1.0.5]: https://github.com/toml-rs/toml/compare/toml_writer-v1.0.4...toml_writer-v1.0.5
6164
[1.0.4]: https://github.com/toml-rs/toml/compare/toml_writer-v1.0.3...toml_writer-v1.0.4
6265
[1.0.3]: https://github.com/toml-rs/toml/compare/toml_writer-v1.0.2...toml_writer-v1.0.3

crates/toml_writer/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_writer"
3-
version = "1.0.5+spec-1.1.0"
3+
version = "1.0.6+spec-1.1.0"
44
description = """
55
A low-level interface for writing out TOML
66
"""

0 commit comments

Comments
 (0)