diff --git a/Cargo.lock b/Cargo.lock index ac1dd6b6..2649acc0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -821,7 +821,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.4" +version = "0.22.5" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index e79aa9a8..d4f59f43 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.4", path = "../toml_edit", default-features = false, features = ["serde"], optional = true } +toml_edit = { version = "0.22.5", 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 1d8eb3e1..3ecdb057 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.5] - 2024-02-13 + ### Internal - Update `winnow` @@ -623,7 +625,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.4...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.5...HEAD +[0.22.5]: https://github.com/toml-rs/toml/compare/v0.22.4...v0.22.5 [0.22.4]: https://github.com/toml-rs/toml/compare/v0.22.3...v0.22.4 [0.22.3]: https://github.com/toml-rs/toml/compare/v0.22.2...v0.22.3 [0.22.2]: https://github.com/toml-rs/toml/compare/v0.22.1...v0.22.2 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index eca83d0d..d035e56a 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.22.4" +version = "0.22.5" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Yet another format-preserving TOML parser."