From d5676a86b25695ffc39094a11babfe3611a2fb5d Mon Sep 17 00:00:00 2001 From: Ed Page Date: Fri, 27 Oct 2023 12:01:38 -0500 Subject: [PATCH] chore: Release --- Cargo.lock | 6 +++--- crates/toml/CHANGELOG.md | 5 ++++- crates/toml/Cargo.toml | 4 ++-- crates/toml_edit/CHANGELOG.md | 5 ++++- crates/toml_edit/Cargo.toml | 2 +- 5 files changed, 14 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 01aad8d5..cd21c498 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -886,7 +886,7 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.5" +version = "0.8.6" dependencies = [ "indexmap", "serde", @@ -941,7 +941,7 @@ dependencies = [ "serde", "serde_json", "toml 0.5.10", - "toml 0.8.5", + "toml 0.8.6", "toml_edit", ] @@ -954,7 +954,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.20.6" +version = "0.20.7" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/CHANGELOG.md b/crates/toml/CHANGELOG.md index 470dcd81..b34c81f8 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.6] - 2023-10-27 + ### Fixes - *(ser)* Make sign of `nan` deterministic by always being positive @@ -187,7 +189,8 @@ Changes: Minor doc fix (#409) -[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.5...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.6...HEAD +[0.8.6]: https://github.com/toml-rs/toml/compare/toml-v0.8.5...toml-v0.8.6 [0.8.5]: https://github.com/toml-rs/toml/compare/toml-v0.8.4...toml-v0.8.5 [0.8.4]: https://github.com/toml-rs/toml/compare/toml-v0.8.3...toml-v0.8.4 [0.8.3]: https://github.com/toml-rs/toml/compare/toml-v0.8.2...toml-v0.8.3 diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index 2488eeb0..51d613ec 100644 --- a/crates/toml/Cargo.toml +++ b/crates/toml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml" -version = "0.8.5" +version = "0.8.6" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = """ @@ -42,7 +42,7 @@ preserve_order = ["indexmap"] [dependencies] serde = "1.0.145" indexmap = { version = "2.0.0", optional = true } -toml_edit = { version = "0.20.6", path = "../toml_edit", features = ["serde"], optional = true } +toml_edit = { version = "0.20.7", path = "../toml_edit", features = ["serde"], optional = true } toml_datetime = { version = "0.6.5", path = "../toml_datetime", features = ["serde"] } serde_spanned = { version = "0.6.4", path = "../serde_spanned", features = ["serde"] } diff --git a/crates/toml_edit/CHANGELOG.md b/crates/toml_edit/CHANGELOG.md index 0f790b75..da52de04 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.7] - 2023-10-27 + ### Fixes - *(ser)* Make sign of `nan` deterministic by always being positive @@ -583,7 +585,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.20.6...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.20.7...HEAD +[0.20.7]: https://github.com/toml-rs/toml/compare/v0.20.6...v0.20.7 [0.20.6]: https://github.com/toml-rs/toml/compare/v0.20.5...v0.20.6 [0.20.5]: https://github.com/toml-rs/toml/compare/v0.20.4...v0.20.5 [0.20.4]: https://github.com/toml-rs/toml/compare/v0.20.3...v0.20.4 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index 7383bdef..14dc8adb 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.20.6" +version = "0.20.7" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Yet another format-preserving TOML parser."