From 388d9b94dcedeae84577ade0cec1fcf7433c034c Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 7 Feb 2023 10:22:48 -0600 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 224ab45b..729b0c6a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -878,7 +878,7 @@ dependencies = [ [[package]] name = "toml" -version = "0.7.1" +version = "0.7.2" dependencies = [ "indexmap", "serde", @@ -931,7 +931,7 @@ dependencies = [ "serde", "serde_json", "toml 0.5.10", - "toml 0.7.1", + "toml 0.7.2", "toml_edit", ] @@ -944,7 +944,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.19.2" +version = "0.19.3" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/CHANGELOG.md b/crates/toml/CHANGELOG.md index 354fcc4d..dfd24938 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.7.2] - 2023-02-07 + ### Fixes - *(ser)* Error on i64 overflow @@ -102,7 +104,8 @@ Changes: Minor doc fix (#409) -[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.7.1...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.7.2...HEAD +[0.7.2]: https://github.com/toml-rs/toml/compare/toml-v0.7.1...toml-v0.7.2 [0.7.1]: https://github.com/toml-rs/toml/compare/toml-v0.7.0...toml-v0.7.1 [0.7.0]: https://github.com/toml-rs/toml/compare/toml-v0.6.0...toml-v0.7.0 [0.6.0]: https://github.com/toml-rs/toml/compare/70caf40...toml-v0.6.0 diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index 2b298ac2..80f91d6e 100644 --- a/crates/toml/Cargo.toml +++ b/crates/toml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml" -version = "0.7.1" +version = "0.7.2" readme = "README.md" license = "MIT OR Apache-2.0" keywords = ["encoding", "toml"] @@ -51,7 +51,7 @@ preserve_order = ["indexmap"] [dependencies] serde = "1.0.145" indexmap = { version = "1.9.1", optional = true } -toml_edit = { version = "0.19.2", path = "../toml_edit", features = ["serde"], optional = true } +toml_edit = { version = "0.19.3", path = "../toml_edit", features = ["serde"], optional = true } toml_datetime = { version = "0.6.1", path = "../toml_datetime", features = ["serde"] } serde_spanned = { version = "0.6.1", path = "../serde_spanned", features = ["serde"] } diff --git a/crates/toml_edit/CHANGELOG.md b/crates/toml_edit/CHANGELOG.md index 361bc3e3..9dedbb82 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.19.3] - 2023-02-07 + ### Fixes - *(ser)* Error on i64 overflow @@ -454,7 +456,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.2...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.3...HEAD +[0.19.3]: https://github.com/toml-rs/toml/compare/v0.19.2...v0.19.3 [0.19.2]: https://github.com/toml-rs/toml/compare/v0.19.1...v0.19.2 [0.19.1]: https://github.com/toml-rs/toml/compare/v0.19.0...v0.19.1 [0.19.0]: https://github.com/toml-rs/toml/compare/v0.18.1...v0.19.0 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index ccdd537e..5c4b3b36 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.19.2" +version = "0.19.3" readme = "README.md" license = "MIT OR Apache-2.0" keywords = ["encoding", "toml"]