From 4ac61f76176cb028207096cbc6dd7263e6f120b1 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 25 Jul 2024 09:51:22 -0500 Subject: [PATCH] chore: Release --- Cargo.lock | 12 ++++++------ crates/serde_spanned/CHANGELOG.md | 5 ++++- crates/serde_spanned/Cargo.toml | 2 +- crates/toml/CHANGELOG.md | 5 ++++- crates/toml/Cargo.toml | 8 ++++---- crates/toml_datetime/CHANGELOG.md | 5 ++++- crates/toml_datetime/Cargo.toml | 2 +- crates/toml_edit/CHANGELOG.md | 5 ++++- crates/toml_edit/Cargo.toml | 6 +++--- 9 files changed, 31 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b445206f..73a50f88 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -760,12 +760,12 @@ dependencies = [ [[package]] name = "serde_spanned" -version = "0.6.6" +version = "0.6.7" dependencies = [ "serde", "serde-untagged", "serde_derive", - "toml 0.8.15", + "toml 0.8.16", ] [[package]] @@ -884,7 +884,7 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.15" +version = "0.8.16" dependencies = [ "indexmap", "serde", @@ -939,20 +939,20 @@ dependencies = [ "serde", "serde_json", "toml 0.5.11", - "toml 0.8.15", + "toml 0.8.16", "toml_edit", ] [[package]] name = "toml_datetime" -version = "0.6.6" +version = "0.6.7" dependencies = [ "serde", ] [[package]] name = "toml_edit" -version = "0.22.16" +version = "0.22.17" dependencies = [ "indexmap", "kstring", diff --git a/crates/serde_spanned/CHANGELOG.md b/crates/serde_spanned/CHANGELOG.md index c834e757..88e22347 100644 --- a/crates/serde_spanned/CHANGELOG.md +++ b/crates/serde_spanned/CHANGELOG.md @@ -7,6 +7,8 @@ The format is based on [Keep a Changelog]. ## [Unreleased] - ReleaseDate +## [0.6.7] - 2024-07-25 + ## [0.6.6] - 2024-05-15 ## [0.6.5] - 2023-12-19 @@ -38,7 +40,8 @@ MSRV is now 1.64.0 ## [0.6.0] - 2023-01-20 -[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.6...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.7...HEAD +[0.6.7]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.6...serde_spanned-v0.6.7 [0.6.6]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.5...serde_spanned-v0.6.6 [0.6.5]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.4...serde_spanned-v0.6.5 [0.6.4]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.3...serde_spanned-v0.6.4 diff --git a/crates/serde_spanned/Cargo.toml b/crates/serde_spanned/Cargo.toml index 5566d150..e2c86261 100644 --- a/crates/serde_spanned/Cargo.toml +++ b/crates/serde_spanned/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_spanned" -version = "0.6.6" +version = "0.6.7" keywords = ["serde", "span"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Serde-compatible spanned Value" diff --git a/crates/toml/CHANGELOG.md b/crates/toml/CHANGELOG.md index 98e0c669..4fe9fe7f 100644 --- a/crates/toml/CHANGELOG.md +++ b/crates/toml/CHANGELOG.md @@ -7,6 +7,8 @@ The format is based on [Keep a Changelog]. ## [Unreleased] - ReleaseDate +## [0.8.16] - 2024-07-25 + ## [0.8.15] - 2024-07-17 ### Fixes @@ -252,7 +254,8 @@ Changes: Minor doc fix (#409) -[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.15...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.16...HEAD +[0.8.16]: https://github.com/toml-rs/toml/compare/toml-v0.8.15...toml-v0.8.16 [0.8.15]: https://github.com/toml-rs/toml/compare/toml-v0.8.14...toml-v0.8.15 [0.8.14]: https://github.com/toml-rs/toml/compare/toml-v0.8.13...toml-v0.8.14 [0.8.13]: https://github.com/toml-rs/toml/compare/toml-v0.8.12...toml-v0.8.13 diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index 6b027802..4c431cd1 100644 --- a/crates/toml/Cargo.toml +++ b/crates/toml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml" -version = "0.8.15" +version = "0.8.16" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = """ @@ -42,9 +42,9 @@ preserve_order = ["indexmap"] [dependencies] serde = "1.0.145" indexmap = { version = "2.0.0", optional = true } -toml_edit = { version = "0.22.16", path = "../toml_edit", default-features = false, features = ["serde"], optional = true } -toml_datetime = { version = "0.6.6", path = "../toml_datetime", features = ["serde"] } -serde_spanned = { version = "0.6.6", path = "../serde_spanned", features = ["serde"] } +toml_edit = { version = "0.22.17", path = "../toml_edit", default-features = false, features = ["serde"], optional = true } +toml_datetime = { version = "0.6.7", path = "../toml_datetime", features = ["serde"] } +serde_spanned = { version = "0.6.7", path = "../serde_spanned", features = ["serde"] } [dev-dependencies] serde = { version = "1.0.199", features = ["derive"] } diff --git a/crates/toml_datetime/CHANGELOG.md b/crates/toml_datetime/CHANGELOG.md index a14ed5fe..78ee76da 100644 --- a/crates/toml_datetime/CHANGELOG.md +++ b/crates/toml_datetime/CHANGELOG.md @@ -7,6 +7,8 @@ The format is based on [Keep a Changelog]. ## [Unreleased] - ReleaseDate +## [0.6.7] - 2024-07-25 + ## [0.6.6] - 2024-05-15 ## [0.6.5] - 2023-10-23 @@ -48,7 +50,8 @@ MSRV is now 1.64.0 ## [0.5.0] - 2022-10-21 -[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.6...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.7...HEAD +[0.6.7]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.6...toml_datetime-v0.6.7 [0.6.6]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.5...toml_datetime-v0.6.6 [0.6.5]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.4...toml_datetime-v0.6.5 [0.6.4]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.3...toml_datetime-v0.6.4 diff --git a/crates/toml_datetime/Cargo.toml b/crates/toml_datetime/Cargo.toml index 8864c895..e90f44d6 100644 --- a/crates/toml_datetime/Cargo.toml +++ b/crates/toml_datetime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_datetime" -version = "0.6.6" +version = "0.6.7" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "A TOML-compatible datetime type" diff --git a/crates/toml_edit/CHANGELOG.md b/crates/toml_edit/CHANGELOG.md index ed631303..6440b85f 100644 --- a/crates/toml_edit/CHANGELOG.md +++ b/crates/toml_edit/CHANGELOG.md @@ -7,6 +7,8 @@ The format is based on [Keep a Changelog]. ## [Unreleased] - ReleaseDate +## [0.22.17] - 2024-07-25 + ## [0.22.16] - 2024-07-17 ### Fixes @@ -715,7 +717,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.16...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.17...HEAD +[0.22.17]: https://github.com/toml-rs/toml/compare/v0.22.16...v0.22.17 [0.22.16]: https://github.com/toml-rs/toml/compare/v0.22.15...v0.22.16 [0.22.15]: https://github.com/toml-rs/toml/compare/v0.22.14...v0.22.15 [0.22.14]: https://github.com/toml-rs/toml/compare/v0.22.13...v0.22.14 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index daf91bd4..9e5011a1 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.22.16" +version = "0.22.17" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Yet another format-preserving TOML parser." @@ -44,8 +44,8 @@ indexmap = { version = "2.0.0", features = ["std"] } winnow = { version = "0.6.0", optional = true } serde = { version = "1.0.145", optional = true } kstring = { version = "2.0.0", features = ["max_inline"], optional = true } -toml_datetime = { version = "0.6.6", path = "../toml_datetime" } -serde_spanned = { version = "0.6.6", path = "../serde_spanned", features = ["serde"], optional = true } +toml_datetime = { version = "0.6.7", path = "../toml_datetime" } +serde_spanned = { version = "0.6.7", path = "../serde_spanned", features = ["serde"], optional = true } [dev-dependencies] serde_json = "1.0.116"