From e71fc23ca0deb1945a8c1a0a207c6393ec74376e Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 16 Sep 2024 19:13:36 -0500 Subject: [PATCH] chore: Release --- Cargo.lock | 2 +- crates/toml/Cargo.toml | 2 +- crates/toml_edit/CHANGELOG.md | 5 ++++- crates/toml_edit/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c96adbaa..9474fe85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -953,7 +953,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.20" +version = "0.22.21" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index 6b7d5aef..6b8b8ea1 100644 --- a/crates/toml/Cargo.toml +++ b/crates/toml/Cargo.toml @@ -42,7 +42,7 @@ preserve_order = ["indexmap"] [dependencies] serde = "1.0.145" indexmap = { version = "2.0.0", optional = true } -toml_edit = { version = "0.22.20", path = "../toml_edit", default-features = false, features = ["serde"], optional = true } +toml_edit = { version = "0.22.21", path = "../toml_edit", default-features = false, features = ["serde"], optional = true } toml_datetime = { version = "0.6.8", path = "../toml_datetime", features = ["serde"] } serde_spanned = { version = "0.6.7", path = "../serde_spanned", features = ["serde"] } diff --git a/crates/toml_edit/CHANGELOG.md b/crates/toml_edit/CHANGELOG.md index 3f4bc2f3..88dca1dc 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.21] - 2024-09-17 + ### Performance - Reduce key allocations @@ -751,7 +753,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.20...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.21...HEAD +[0.22.21]: https://github.com/toml-rs/toml/compare/v0.22.20...v0.22.21 [0.22.20]: https://github.com/toml-rs/toml/compare/v0.22.19...v0.22.20 [0.22.19]: https://github.com/toml-rs/toml/compare/v0.22.18...v0.22.19 [0.22.18]: https://github.com/toml-rs/toml/compare/v0.22.17...v0.22.18 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index dcc401e0..6254f14e 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.22.20" +version = "0.22.21" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Yet another format-preserving TOML parser."