Skip to content

Commit 34d45f2

Browse files
committed
chore: Release
1 parent 02d3cd5 commit 34d45f2

File tree

13 files changed

+47
-29
lines changed

13 files changed

+47
-29
lines changed

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.0.4] - 2025-12-17
11+
1012
## [1.0.3] - 2025-10-09
1113

1214
## [1.0.2] - 2025-09-18
@@ -85,7 +87,8 @@ MSRV is now 1.64.0
8587
## [0.6.0] - 2023-01-20
8688

8789
<!-- next-url -->
88-
[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v1.0.3...HEAD
90+
[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v1.0.4...HEAD
91+
[1.0.4]: https://github.com/toml-rs/toml/compare/serde_spanned-v1.0.3...serde_spanned-v1.0.4
8992
[1.0.3]: https://github.com/toml-rs/toml/compare/serde_spanned-v1.0.2...serde_spanned-v1.0.3
9093
[1.0.2]: https://github.com/toml-rs/toml/compare/serde_spanned-v1.0.1...serde_spanned-v1.0.2
9194
[1.0.1]: https://github.com/toml-rs/toml/compare/serde_spanned-v1.0.0...serde_spanned-v1.0.1

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.0.3"
3+
version = "1.0.4"
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+
## [0.9.9] - 2025-12-17
11+
1012
## [0.9.8] - 2025-10-09
1113

1214
### Features
@@ -416,7 +418,8 @@ Changes:
416418
Minor doc fix (#409)
417419

418420
<!-- next-url -->
419-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.9.8...HEAD
421+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.9.9...HEAD
422+
[0.9.9]: https://github.com/toml-rs/toml/compare/toml-v0.9.8...toml-v0.9.9
420423
[0.9.8]: https://github.com/toml-rs/toml/compare/toml-v0.9.7...toml-v0.9.8
421424
[0.9.7]: https://github.com/toml-rs/toml/compare/toml-v0.9.6...toml-v0.9.7
422425
[0.9.6]: https://github.com/toml-rs/toml/compare/toml-v0.9.5...toml-v0.9.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 = "0.9.8+spec-1.0.0"
3+
version = "0.9.9+spec-1.0.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.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.4", path = "../toml_parser", default-features = false, features = ["alloc"], optional = true }
54+
toml_parser = { version = "1.0.5", 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.3", path = "../toml_datetime", default-features = false, features = ["alloc"] }
59-
toml_writer = { version = "1.0.4", path = "../toml_writer", default-features = false, features = ["alloc"], optional = true }
60-
serde_spanned = { version = "1.0.3", path = "../serde_spanned", default-features = false, features = ["alloc"] }
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 }
60+
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

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+
## [0.7.4] - 2025-12-17
11+
1012
## [0.7.3] - 2025-10-09
1113

1214
## [0.7.2] - 2025-09-18
@@ -104,7 +106,8 @@ MSRV is now 1.64.0
104106
## [0.5.0] - 2022-10-21
105107

106108
<!-- next-url -->
107-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.3...HEAD
109+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.4...HEAD
110+
[0.7.4]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.3...toml_datetime-v0.7.4
108111
[0.7.3]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.2...toml_datetime-v0.7.3
109112
[0.7.2]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.1...toml_datetime-v0.7.2
110113
[0.7.1]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.0...toml_datetime-v0.7.1

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.3+spec-1.0.0"
3+
version = "0.7.4+spec-1.0.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.23.10] - 2025-12-17
11+
1012
## [0.23.9] - 2025-12-06
1113

1214
- Reverted change of `InlineTable::insert` to take a `impl Into<Value>`
@@ -896,7 +898,8 @@ This release was sponsored by Futurewei
896898
- `array.push` now returns a `Result`.
897899

898900
<!-- next-url -->
899-
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.23.9...HEAD
901+
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.23.10...HEAD
902+
[0.23.10]: https://github.com/toml-rs/toml/compare/v0.23.9...v0.23.10
900903
[0.23.9]: https://github.com/toml-rs/toml/compare/v0.23.8...v0.23.9
901904
[0.23.8]: https://github.com/toml-rs/toml/compare/v0.23.7...v0.23.8
902905
[0.23.7]: https://github.com/toml-rs/toml/compare/v0.23.6...v0.23.7

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.23.9+spec-1.0.0"
3+
version = "0.23.10+spec-1.0.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.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.3", path = "../toml_datetime" }
46-
serde_spanned = { version = "1.0.3", path = "../serde_spanned", features = ["serde"], optional = true }
47-
toml_writer = { version = "1.0.4", path = "../toml_writer", optional = true }
48-
toml_parser = { version = "1.0.4", path = "../toml_parser", optional = true }
45+
toml_datetime = { version = "0.7.4", path = "../toml_datetime" }
46+
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 }
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.5] - 2025-12-17
11+
1012
## [1.0.4] - 2025-10-09
1113

1214
## [1.0.3] - 2025-09-18
@@ -38,7 +40,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
3840
## [1.0.0] - 2025-07-08
3941

4042
<!-- next-url -->
41-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.4...HEAD
43+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.5...HEAD
44+
[1.0.5]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.4...toml_parser-v1.0.5
4245
[1.0.4]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.3...toml_parser-v1.0.4
4346
[1.0.3]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.2...toml_parser-v1.0.3
4447
[1.0.2]: https://github.com/toml-rs/toml/compare/toml_parser-v1.0.1...toml_parser-v1.0.2

0 commit comments

Comments
 (0)