From d308188db7d795bd65be3fc833dd4b6ad59ba926 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 26 Sep 2023 16:30:11 -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 c57ab71b..1ea0930c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -886,7 +886,7 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.0" +version = "0.8.1" dependencies = [ "indexmap", "serde", @@ -939,7 +939,7 @@ dependencies = [ "serde", "serde_json", "toml 0.5.10", - "toml 0.8.0", + "toml 0.8.1", "toml_edit", ] @@ -952,7 +952,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.20.0" +version = "0.20.1" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/CHANGELOG.md b/crates/toml/CHANGELOG.md index ab1b7cde..3e490cdd 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.1] - 2023-09-26 + ### Fixes - *(de)* Allow parsing keys into newtypes @@ -160,7 +162,8 @@ Changes: Minor doc fix (#409) -[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.0...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.1...HEAD +[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 [0.7.8]: https://github.com/toml-rs/toml/compare/toml-v0.7.7...toml-v0.7.8 [0.7.7]: https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.7.7 diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index d73c19e1..42dce811 100644 --- a/crates/toml/Cargo.toml +++ b/crates/toml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml" -version = "0.8.0" +version = "0.8.1" 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.0", path = "../toml_edit", features = ["serde"], optional = true } +toml_edit = { version = "0.20.1", 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"] } diff --git a/crates/toml_edit/CHANGELOG.md b/crates/toml_edit/CHANGELOG.md index a5ea34fd..40360ecb 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.1] - 2023-09-26 + ### Fixes - *(de)* Allow parsing keys into newtypes @@ -546,7 +548,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.20.0...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.20.1...HEAD +[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 [0.19.15]: https://github.com/toml-rs/toml/compare/v0.19.14...v0.19.15 [0.19.14]: https://github.com/toml-rs/toml/compare/v0.19.13...v0.19.14 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index ffee799d..992a7f67 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.20.0" +version = "0.20.1" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Yet another format-preserving TOML parser."