8000 chore: Release · toml-rs/toml@4021081 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4021081

Browse files
committed
chore: Release
1 parent 3312698 commit 4021081

File tree

7 files changed

+24
-15
lines changed

7 files changed

+24
-15
lines changed

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

10+
## [0.8.21] - 2025-04-25
11+
1012
### Features
1113

1214
- Add `unbounded` feature to bypass recursion depth checks
@@ -305,7 +307,8 @@ Changes:
305307
Minor doc fix (#409)
306308

307309
<!-- next-url -->
308-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.20...HEAD
310+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.21...HEAD
311+
[0.8.21]: https://github.com/toml-rs/toml/compare/toml-v0.8.20...toml-v0.8.21
309312
[0.8.20]: https://github.com/toml-rs/toml/compare/toml-v0.8.19...toml-v0.8.20
310313
[0.8.19]: https://github.com/toml-rs/toml/compare/toml-v0.8.18...toml-v0.8.19
311314
[0.8.18]: https://github.com/toml-rs/toml/compare/toml-v0.8.17...toml-v0.8.18

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.20"
3+
version = "0.8.21"
44
keywords = ["encoding", "toml"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = """
@@ -49,8 +49,8 @@ preserve_order = ["indexmap"]
4949
[dependencies]
5050
serde = "1.0.145"
5151
indexmap = { version = "2.0.0", optional = true }
52-
toml_edit = { version = "0.22.24", path = "../toml_edit", default-features = false, features = ["serde"], optional = true }
53-
toml_datetime = { version = "0.6.8", path = "../toml_datetime", features = ["serde"] }
52+
toml_edit = { version = "0.22.25", path = "../toml_edit", default-features = false, features = ["serde"], optional = true }
53+
toml_datetime = { version = "0.6.9", path = "../toml_datetime", features = ["serde"] }
5454
serde_spanned = { version = "0.6.8", path = "../serde_spanned", features = ["serde"] }
5555

5656
[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 @@ The format is based on [Keep a Changelog].
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.6.9] - 2025-04-25
11+
1012
## [0.6.8] - 2024-07-30
1113

1214
### Features
@@ -56,7 +58,8 @@ MSRV is now 1.64.0
5658
## [0.5.0] - 2022-10-21
5759

5860
<!-- next-url -->
59-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.8...HEAD
61+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.9...HEAD
62+
[0.6.9]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.8...toml_datetime-v0.6.9
6063
[0.6.8]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.7...toml_datetime-v0.6.8
6164
[0.6.7]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.6...toml_datetime-v0.6.7
6265
[0.6.6]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.5...toml_datetime-v0.6.6

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.6.8"
3+
version = "0.6.9"
44
keywords = ["encoding", "toml"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = "A TOML-compatible datetime type"

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.25] - 2025-04-25
11+
1012
### Fixes
1113

1214
- Reduced escaping in strings without a prior formatting
@@ -782,7 +784,8 @@ This release was sponsored by Futurewei
782784
- `array.push` now returns a `Result`.
783785

784786
<!-- next-url -->
785-
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.24...HEAD
787+
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.25...HEAD
788+
[0.22.25]: https://github.com/toml-rs/toml/compare/v0.22.24...v0.22.25
786789
[0.22.24]: https://github.com/toml-rs/toml/compare/v0.22.23...v0.22.24
787790
[0.22.23]: https://github.com/toml-rs/toml/compare/v0.22.22...v0.22.23
788791
[0.22.22]: A8C6 https://github.com/toml-rs/toml/compare/v0.22.21...v0.22.22

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.22.24"
3+
version = "0.22.25"
44
keywords = ["encoding", "toml"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = "Yet another format-preserving TOML parser."
@@ -44,7 +44,7 @@ indexmap = { version = "2.3.0", features = ["std"] }
4444
winnow = { version = "0.7.6", optional = true }
4545
serde = { version = "1.0.145", optional = true }
4646
kstring = { version = "2.0.0", features = ["max_inline"], optional = true }
47-
toml_datetime = { version = "0.6.8", path = "../toml_datetime" }
47+
toml_datetime = { version = "0.6.9", path = "../toml_datetime" }
4848
serde_spanned = { version = "0.6.8", path = "../serde_spanned", features = ["serde"], optional = true }
4949
toml_write = { version = "0.1.0", path = "../toml_write", optional = true }
5050

0 commit comments

Comments
 (0)
0