diff --git a/Cargo.lock b/Cargo.lock index f82556f1..84b6a754 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -953,7 +953,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.20.1" +version = "0.20.2" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index 1568e4ee..59c037e9 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.20.1", path = "../toml_edit", features = ["serde"], optional = true } +toml_edit = { version = "0.20.2", path = "../toml_edit", features = ["serde"], optional = true } toml_datetime = { version = "0.6.3", path = "../toml_datetime", features = ["serde"] } serde_spanned = { version = "0.6.3", path = "../serde_spanned", features = ["serde"] } diff --git a/crates/toml_edit/CHANGELOG.md b/crates/toml_edit/CHANGELOG.md index e9fa999d..69a91fd9 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.20.2] - 2023-10-03 + ### Fixes - *(parser)* Correctly error when mixing inline tables with inline dotted keys @@ -552,7 +554,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.20.1...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.20.2...HEAD +[0.20.2]: https://github.com/toml-rs/toml/compare/v0.20.1...v0.20.2 [0.20.1]: https://github.com/toml-rs/toml/compare/v0.20.0...v0.20.1 [0.20.0]: https://github.com/toml-rs/toml/compare/v0.19.15...v0.20.0 [0.19.15]: https://github.com/toml-rs/toml/compare/v0.19.14...v0.19.15 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index 03107fdd..307f6451 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.20.1" +version = "0.20.2" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Yet another format-preserving TOML parser."