diff --git a/Cargo.lock b/Cargo.lock index ef4ec4d5..37092b1d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -765,7 +765,7 @@ dependencies = [ "serde", "serde-untagged", "serde_derive", - "toml 0.8.17", + "toml 0.8.18", ] [[package]] @@ -884,7 +884,7 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.17" +version = "0.8.18" dependencies = [ "indexmap", "serde", @@ -939,7 +939,7 @@ dependencies = [ "serde", "serde_json", "toml 0.5.11", - "toml 0.8.17", + "toml 0.8.18", "toml_edit", ] @@ -952,7 +952,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.18" +version = "0.22.19" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/CHANGELOG.md b/crates/toml/CHANGELOG.md index 0b4f5688..3fbb4546 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.18] - 2024-07-31 + ### Fixes - Prevent a stack overflow when parsing very large files @@ -275,7 +277,8 @@ Changes: Minor doc fix (#409) -[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.17...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.18...HEAD +[0.8.18]: https://github.com/toml-rs/toml/compare/toml-v0.8.17...toml-v0.8.18 [0.8.17]: https://github.com/toml-rs/toml/compare/toml-v0.8.16...toml-v0.8.17 [0.8.16]: https://github.com/toml-rs/toml/compare/toml-v0.8.15...toml-v0.8.16 [0.8.15]: https://github.com/toml-rs/toml/compare/toml-v0.8.14...toml-v0.8.15 diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index 34228926..65e78c7a 100644 --- a/crates/toml/Cargo.toml +++ b/crates/toml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml" -version = "0.8.17" +version = "0.8.18" 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.18", path = "../toml_edit", default-features = false, features = ["serde"], optional = true } +toml_edit = { version = "0.22.19", 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 85f4f2e3..663e0c64 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.19] - 2024-07-31 + ### Fixes - Prevent a stack overflow when parsing very large files @@ -734,7 +736,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.18...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.19...HEAD +[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 [0.22.17]: https://github.com/toml-rs/toml/compare/v0.22.16...v0.22.17 [0.22.16]: https://github.com/toml-rs/toml/compare/v0.22.15...v0.22.16 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index aea168f8..0898f9c8 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.22.18" +version = "0.22.19" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Yet another format-preserving TOML parser."