Skip to content

Commit 838a022

Browse files
committed
chore: Release
1 parent b9d399d commit 838a022

File tree

9 files changed

+31
-19
lines changed

9 files changed

+31
-19
lines changed

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/serde_spanned/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The format is based on [Keep a Changelog].
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.6.9] - 2025-06-06
11+
1012
## [0.6.8] - 2024-09-25
1113

1214
### Fixes
@@ -46,7 +48,8 @@ MSRV is now 1.64.0
4648
## [0.6.0] - 2023-01-20
4749

4850
<!-- next-url -->
49-
[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.8...HEAD
51+
[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.9...HEAD
52+
[0.6.9]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.8...serde_spanned-v0.6.9
5053
[0.6.8]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.7...serde_spanned-v0.6.8
5154
[0.6.7]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.6...serde_spanned-v0.6.7
5255
[0.6.6]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.5...serde_spanned-v0.6.6

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 = "0.6.8"
3+
version = "0.6.9"
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 @@ The format is based on [Keep a Changelog].
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.8.23] - 2025-06-06
11+
1012
### Fixes
1113

1214
- *(serde)* Serialize struct variants
@@ -318,7 +320,8 @@ Changes:
318320
Minor doc fix (#409)
319321

320322
<!-- next-url -->
321-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.22...HEAD
323+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.23...HEAD
324+
[0.8.23]: https://github.com/toml-rs/toml/compare/toml-v0.8.22...toml-v0.8.23
322325
[0.8.22]: https://github.com/toml-rs/toml/compare/toml-v0.8.21...toml-v0.8.22
323326
[0.8.21]: https://github.com/toml-rs/toml/compare/toml-v0.8.20...toml-v0.8.21
324327
[0.8.20]: https://github.com/toml-rs/toml/compare/toml-v0.8.19...toml-v0.8.20

crates/toml/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml"
3-
version = "0.8.22"
3+
version = "0.8.23"
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
@@ -47,9 +47,9 @@ preserve_order = ["indexmap"]
4747
[dependencies]
4848
serde = "1.0.145"
4949
indexmap = { version = "2.0.0", optional = true }
50-
toml_edit = { version = "0.22.26", path = "../toml_edit", default-features = false, features = ["serde"], optional = true }
50+
toml_edit = { version = "0.22.27", path = "../toml_edit", default-features = false, features = ["serde"], optional = true }
5151
toml_datetime = { version = "0.6.11", path = "../toml_datetime", features = ["serde"] }
52-
serde_spanned = { version = "0.6.8", path = "../serde_spanned", features = ["serde"] }
52+
serde_spanned = { version = "0.6.9", path = "../serde_spanned", features = ["serde"] }
5353

5454
[dev-dependencies]
5555
serde = { version = "1.0.199", features = ["derive"] }

crates/toml_edit/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The format is based on [Keep a Changelog].
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.22.27] - 2025-06-06
11+
1012
### Features
1113

1214
- Add `ImDocument::into_item`, `DocumentMut::into_item`
@@ -801,7 +803,8 @@ This release was sponsored by Futurewei
801803
- `array.push` now returns a `Result`.
802804

803805
<!-- next-url -->
804-
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.26...HEAD
806+
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.27...HEAD
807+
[0.22.27]: https://github.com/toml-rs/toml/compare/v0.22.26...v0.22.27
805808
[0.22.26]: https://github.com/toml-rs/toml/compare/v0.22.25...v0.22.26
806809
[0.22.25]: https://github.com/toml-rs/toml/compare/v0.22.24...v0.22.25
807810
[0.22.24]: https://github.com/toml-rs/toml/compare/v0.22.23...v0.22.24

crates/toml_edit/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml_edit"
3-
version = "0.22.26"
3+
version = "0.22.27"
44
description = "Yet another format-preserving TOML parser."
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
keywords = ["encoding", "toml"]
@@ -45,8 +45,8 @@ winnow = { version = "0.7.10", optional = true }
4545
serde = { version = "1.0.145", optional = true }
4646
kstring = { version = "2.0.0", features = ["max_inline"], optional = true }
4747
toml_datetime = { version = "0.6.11", path = "../toml_datetime" }
48-
serde_spanned = { version = "0.6.8", path = "../serde_spanned", features = ["serde"], optional = true }
49-
toml_write = { version = "0.1.1", path = "../toml_write", optional = true }
48+
serde_spanned = { version = "0.6.9", path = "../serde_spanned", features = ["serde"], optional = true }
49+
toml_write = { version = "0.1.2", path = "../toml_write", optional = true }
5050

5151
[dev-dependencies]
5252
serde = { version = "1.0.199", features = ["derive"] }

crates/toml_write/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@ The format is based on [Keep a Changelog].
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.1.2] - 2025-06-06
11+
1012
## [0.1.1] - 2025-04-28
1113

1214
## [0.1.0] - 2025-04-25
1315

1416
Initial release
1517

1618
<!-- next-url -->
17-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_write-v0.1.1...HEAD
19+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_write-v0.1.2...HEAD
20+
[0.1.2]: https://github.com/toml-rs/toml/compare/toml_write-v0.1.1...toml_write-v0.1.2
1821
[0.1.1]: https://github.com/toml-rs/toml/compare/toml_write-v0.1.0...toml_write-v0.1.1
1922
[0.1.0]: https://github.com/toml-rs/toml/compare/d00d2856...toml_write-v0.1.0

crates/toml_write/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_write"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = """
55
A low-level interface for writing out TOML
66
"""

0 commit comments

Comments
 (0)