diff --git a/Cargo.lock b/Cargo.lock index c19a6b14..a0d1c40f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -634,7 +634,7 @@ dependencies = [ "serde", "serde-untagged", "serde_derive", - "toml 0.8.11", + "toml 0.8.12", ] [[package]] @@ -753,7 +753,7 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.11" +version = "0.8.12" dependencies = [ "indexmap", "serde", @@ -808,7 +808,7 @@ dependencies = [ "serde", "serde_json", "toml 0.5.10", - "toml 0.8.11", + "toml 0.8.12", "toml_edit", ] @@ -821,7 +821,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.7" +version = "0.22.8" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/CHANGELOG.md b/crates/toml/CHANGELOG.md index 8689a844..82c66626 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.12] - 2024-03-18 + ### Fixes - Drop recursion limit from 128 to 100 to work on `opt-level = 0` builds @@ -235,7 +237,8 @@ Changes: Minor doc fix (#409) -[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.11...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.12...HEAD +[0.8.12]: https://github.com/toml-rs/toml/compare/toml-v0.8.11...toml-v0.8.12 [0.8.11]: https://github.com/toml-rs/toml/compare/toml-v0.8.10...toml-v0.8.11 [0.8.10]: https://github.com/toml-rs/toml/compare/toml-v0.8.9...toml-v0.8.10 [0.8.9]: https://github.com/toml-rs/toml/compare/toml-v0.8.8...toml-v0.8.9 diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index f8e50dd5..4cdb7ee2 100644 --- a/crates/toml/Cargo.toml +++ b/crates/toml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml" -version = "0.8.11" +version = "0.8.12" 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.7", path = "../toml_edit", default-features = false, features = ["serde"], optional = true } +toml_edit = { version = "0.22.8", 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 f7017154..b12772be 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.8] - 2024-03-18 + ### Fixes - Drop recursion limit from 128 to 100 to work on `opt-level = 0` builds @@ -668,7 +670,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.7...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.8...HEAD +[0.22.8]: https://github.com/toml-rs/toml/compare/v0.22.7...v0.22.8 [0.22.7]: https://github.com/toml-rs/toml/compare/v0.22.6...v0.22.7 [0.22.6]: https://github.com/toml-rs/toml/compare/v0.22.5...v0.22.6 [0.22.5]: https://github.com/toml-rs/toml/compare/v0.22.4...v0.22.5 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index 5078b361..46c25ad9 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.22.7" +version = "0.22.8" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Yet another format-preserving TOML parser."