diff --git a/Cargo.lock b/Cargo.lock index 397fbc6a..b445206f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -765,7 +765,7 @@ dependencies = [ "serde", "serde-untagged", "serde_derive", - "toml 0.8.14", + "toml 0.8.15", ] [[package]] @@ -884,7 +884,7 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.14" +version = "0.8.15" dependencies = [ "indexmap", "serde", @@ -939,7 +939,7 @@ dependencies = [ "serde", "serde_json", "toml 0.5.11", - "toml 0.8.14", + "toml 0.8.15", "toml_edit", ] @@ -952,7 +952,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.15" +version = "0.22.16" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/CHANGELOG.md b/crates/toml/CHANGELOG.md index 45075de8..98e0c669 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.15] - 2024-07-17 + ### Fixes - Correctly encode TOML keys with mixed quotes @@ -250,7 +252,8 @@ Changes: Minor doc fix (#409) -[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.14...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.15...HEAD +[0.8.15]: https://github.com/toml-rs/toml/compare/toml-v0.8.14...toml-v0.8.15 [0.8.14]: https://github.com/toml-rs/toml/compare/toml-v0.8.13...toml-v0.8.14 [0.8.13]: https://github.com/toml-rs/toml/compare/toml-v0.8.12...toml-v0.8.13 [0.8.12]: https://github.com/toml-rs/toml/compare/toml-v0.8.11...toml-v0.8.12 diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index a0bbb67d..6b027802 100644 --- a/crates/toml/Cargo.toml +++ b/crates/toml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml" -version = "0.8.14" +version = "0.8.15" 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.22.15", path = "../toml_edit", default-features = false, features = ["serde"], optional = true } +toml_edit = { version = "0.22.16", path = "../toml_edit", default-features = false, features = ["serde"], optional = true } toml_datetime = { version = "0.6.6", path = "../toml_datetime", features = ["serde"] } serde_spanned = { version = "0.6.6", path = "../serde_spanned", features = ["serde"] } diff --git a/crates/toml_edit/CHANGELOG.md b/crates/toml_edit/CHANGELOG.md index 7fce989d..ed631303 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.16] - 2024-07-17 + ### Fixes - Correctly encode TOML keys with mixed quotes @@ -713,7 +715,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.15...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.16...HEAD +[0.22.16]: https://github.com/toml-rs/toml/compare/v0.22.15...v0.22.16 [0.22.15]: https://github.com/toml-rs/toml/compare/v0.22.14...v0.22.15 [0.22.14]: https://github.com/toml-rs/toml/compare/v0.22.13...v0.22.14 [0.22.13]: https://github.com/toml-rs/toml/compare/v0.22.12...v0.22.13 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index 1049ef83..daf91bd4 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.22.15" +version = "0.22.16" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Yet another format-preserving TOML parser."