From 8686b9407a43ffbbd796af978d18ac05f2c1f356 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 23 Oct 2023 10:00:57 -0500 Subject: [PATCH] chore: Release --- Cargo.lock | 10 +++++----- 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, 30 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 92ca010b..756f945a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -765,7 +765,7 @@ dependencies = [ [[package]] name = "serde_spanned" -version = "0.6.3" +version = "0.6.4" dependencies = [ "serde", ] @@ -886,7 +886,7 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.2" +version = "0.8.3" dependencies = [ "indexmap", "serde", @@ -941,20 +941,20 @@ dependencies = [ "serde", "serde_json", "toml 0.5.10", - "toml 0.8.2", + "toml 0.8.3", "toml_edit", ] [[package]] name = "toml_datetime" -version = "0.6.3" +version = "0.6.4" dependencies = [ "serde", ] [[package]] name = "toml_edit" -version = "0.20.2" +version = "0.20.3" dependencies = [ "indexmap", "kstring", diff --git a/crates/serde_spanned/CHANGELOG.md b/crates/serde_spanned/CHANGELOG.md index 864a0240..004874a8 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.4] - 2023-10-23 + ## [0.6.3] - 2023-06-24 ## [0.6.2] - 2023-05-18 @@ -24,7 +26,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.3...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.4...HEAD +[0.6.4]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.3...serde_spanned-v0.6.4 [0.6.3]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.2...serde_spanned-v0.6.3 [0.6.2]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.1...serde_spanned-v0.6.2 [0.6.1]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.0...serde_spanned-v0.6.1 diff --git a/crates/serde_spanned/Cargo.toml b/crates/serde_spanned/Cargo.toml index 5fe049fd..f1a578dc 100644 --- a/crates/serde_spanned/Cargo.toml +++ b/crates/serde_spanned/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_spanned" -version = "0.6.3" +version = "0.6.4" 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 1adb6764..2ea9fe05 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.3] - 2023-10-23 + ## [0.8.2] - 2023-10-03 ### Fixes @@ -168,7 +170,8 @@ Changes: Minor doc fix (#409) -[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.2...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.3...HEAD +[0.8.3]: https://github.com/toml-rs/toml/compare/toml-v0.8.2...toml-v0.8.3 [0.8.2]: https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.2 [0.8.1]: https://github.com/toml-rs/toml/compare/toml-v0.8.0...toml-v0.8.1 [0.8.0]: https://github.com/toml-rs/toml/compare/toml-v0.7.8...toml-v0.8.0 diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index 91ae51f6..7bc5db0c 100644 --- a/crates/toml/Cargo.toml +++ b/crates/toml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml" -version = "0.8.2" +version = "0.8.3" 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.20.2", path = "../toml_edit", features = ["serde"], optional = true } -toml_datetime = { version = "0.6.3", path = "../toml_datetime", features = ["serde"] } -serde_spanned = { version = "0.6.3", path = "../serde_spanned", features = ["serde"] } +toml_edit = { version = "0.20.3", path = "../toml_edit", features = ["serde"], optional = true } +toml_datetime = { version = "0.6.4", path = "../toml_datetime", features = ["serde"] } +serde_spanned = { version = "0.6.4", path = "../serde_spanned", features = ["serde"] } [dev-dependencies] serde = { version = "1.0.160", features = ["derive"] } diff --git a/crates/toml_datetime/CHANGELOG.md b/crates/toml_datetime/CHANGELOG.md index b33e16de..b660efe9 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.4] - 2023-10-23 + ## [0.6.3] - 2023-06-24 ## [0.6.2] - 2023-05-18 @@ -37,7 +39,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.3...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.4...HEAD +[0.6.4]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.3...toml_datetime-v0.6.4 [0.6.3]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.2...toml_datetime-v0.6.3 [0.6.2]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.1...toml_datetime-v0.6.2 [0.6.1]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.0...toml_datetime-v0.6.1 diff --git a/crates/toml_datetime/Cargo.toml b/crates/toml_datetime/Cargo.toml index 9c600735..0a4ff6f3 100644 --- a/crates/toml_datetime/Cargo.toml +++ b/crates/toml_datetime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_datetime" -version = "0.6.3" +version = "0.6.4" 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 09fe46c6..481d1d68 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.20.3] - 2023-10-23 + ### Features - *(edit)* Add `Array::sort_by_key` @@ -558,7 +560,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.20.2...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.20.3...HEAD +[0.20.3]: https://github.com/toml-rs/toml/compare/v0.20.2...v0.20.3 [0.20.2]: https://github.com/toml-rs/toml/compare/v0.20.1...v0.20.2 [0.20.1]: https://github.com/toml-rs/toml/compare/v0.20.0...v0.20.1 [0.20.0]: https://github.com/toml-rs/toml/compare/v0.19.15...v0.20.0 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index f6be04e1..94cde6cd 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.20.2" +version = "0.20.3" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Yet another format-preserving TOML parser." @@ -41,8 +41,8 @@ indexmap = { version = "2.0.0", features = ["std"] } winnow = "0.5.0" serde = { version = "1.0.145", optional = true } kstring = { version = "2.0.0", features = ["max_inline"], optional = true } -toml_datetime = { version = "0.6.3", path = "../toml_datetime" } -serde_spanned = { version = "0.6.3", path = "../serde_spanned", features = ["serde"], optional = true } +toml_datetime = { version = "0.6.4", path = "../toml_datetime" } +serde_spanned = { version = "0.6.4", path = "../serde_spanned", features = ["serde"], optional = true } [dev-dependencies] serde_json = "1.0.96"