diff --git a/Cargo.lock b/Cargo.lock index dfb75baa..4292903d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1003,7 +1003,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.0" +version = "0.22.1" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index 73ef9392..ae8fd93b 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.0", path = "../toml_edit", default-features = false, features = ["serde"], optional = true } +toml_edit = { version = "0.22.1", path = "../toml_edit", default-features = false, features = ["serde"], optional = true } toml_datetime = { version = "0.6.5", path = "../toml_datetime", features = ["serde"] } serde_spanned = { version = "0.6.5", path = "../serde_spanned", features = ["serde"] } diff --git a/crates/toml_edit/CHANGELOG.md b/crates/toml_edit/CHANGELOG.md index e52de933..83f48924 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.1] - 2024-02-06 + ### Features - Add `Table::key` @@ -611,7 +613,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.0...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.1...HEAD +[0.22.1]: https://github.com/toml-rs/toml/compare/v0.22.0...v0.22.1 [0.22.0]: https://github.com/toml-rs/toml/compare/v0.21.1...v0.22.0 [0.21.1]: https://github.com/toml-rs/toml/compare/v0.21.0...v0.21.1 [0.21.0]: https://github.com/toml-rs/toml/compare/v0.20.7...v0.21.0 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index f2add008..74bc02a1 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.22.0" +version = "0.22.1" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Yet another format-preserving TOML parser."