diff --git a/Cargo.lock b/Cargo.lock index ddf2bed8..abd9d18f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -596,7 +596,7 @@ dependencies = [ "serde", "serde-untagged", "serde_derive", - "toml 0.8.13", + "toml 0.8.14", ] [[package]] @@ -703,7 +703,7 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.13" +version = "0.8.14" dependencies = [ "indexmap", "serde", @@ -758,7 +758,7 @@ dependencies = [ "serde", "serde_json", "toml 0.5.11", - "toml 0.8.13", + "toml 0.8.14", "toml_edit", ] @@ -771,7 +771,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.13" +version = "0.22.14" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/CHANGELOG.md b/crates/toml/CHANGELOG.md index 2b6df00d..e72ff9a2 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.14] - 2024-06-03 + ### Fixes - Allow inferring keys as string literals @@ -244,7 +246,8 @@ Changes: Minor doc fix (#409) -[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.13...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.14...HEAD +[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 [0.8.11]: https://github.com/toml-rs/toml/compare/toml-v0.8.10...toml-v0.8.11 diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index ea0969fd..be9342d6 100644 --- a/crates/toml/Cargo.toml +++ b/crates/toml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml" -version = "0.8.13" +version = "0.8.14" 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.13", path = "../toml_edit", default-features = false, features = ["serde"], optional = true } +toml_edit = { version = "0.22.14", 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 b04fe1be..ee7e3769 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.14] - 2024-06-03 + ### Fixes - Allow inferring keys as string literals @@ -701,7 +703,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.13...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.14...HEAD +[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 [0.22.12]: https://github.com/toml-rs/toml/compare/v0.22.11...v0.22.12 [0.22.11]: https://github.com/toml-rs/toml/compare/v0.22.10...v0.22.11 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index 34f60d51..40326fb8 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.22.13" +version = "0.22.14" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Yet another format-preserving TOML parser."