diff --git a/Cargo.lock b/Cargo.lock index 0d420839..37aec870 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -973,7 +973,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.18.0" +version = "0.18.1" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index e14b9c29..205e3772 100644 --- a/crates/toml/Cargo.toml +++ b/crates/toml/Cargo.toml @@ -48,7 +48,7 @@ preserve_order = ["indexmap"] [dependencies] serde = "1.0.145" indexmap = { version = "1.9.1", optional = true } -toml_edit = { version = "0.18.0", path = "../toml_edit", features = ["serde"], optional = true } +toml_edit = { version = "0.18.1", path = "../toml_edit", features = ["serde"], optional = true } toml_datetime = { version = "0.5.1", path = "../toml_datetime", features = ["serde"] } serde_spanned = { version = "0.6.0", path = "../serde_spanned", features = ["serde"] } diff --git a/crates/toml_edit/CHANGELOG.md b/crates/toml_edit/CHANGELOG.md index 56f53c6a..01e35891 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.18.1] - 2023-01-27 + ### Performance - *(serde)* Drop `derive` feature for better build times @@ -423,7 +425,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.18.0...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.18.1...HEAD +[0.18.1]: https://github.com/toml-rs/toml/compare/v0.18.0...v0.18.1 [0.18.0]: https://github.com/toml-rs/toml/compare/v0.17.1...v0.18.0 [0.17.1]: https://github.com/toml-rs/toml/compare/v0.17.0...v0.17.1 [0.17.0]: https://github.com/toml-rs/toml/compare/v0.16.2...v0.17.0 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index bb954de3..d4c1e71e 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.18.0" +version = "0.18.1" readme = "README.md" license = "MIT OR Apache-2.0" keywords = ["encoding", "toml"]