diff --git a/Cargo.lock b/Cargo.lock index 020e9b56..dd45c601 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -886,7 +886,7 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.3" +version = "0.8.4" dependencies = [ "indexmap", "serde", @@ -941,20 +941,20 @@ dependencies = [ "serde", "serde_json", "toml 0.5.10", - "toml 0.8.3", + "toml 0.8.4", "toml_edit", ] [[package]] name = "toml_datetime" -version = "0.6.4" +version = "0.6.5" dependencies = [ "serde", ] [[package]] name = "toml_edit" -version = "0.20.3" +version = "0.20.4" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/CHANGELOG.md b/crates/toml/CHANGELOG.md index 4cd13e82..39f1bb59 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.4] - 2023-10-23 + ### Fixes - *(parser)* Error on invalid days of month, accounting for leap years @@ -174,7 +176,8 @@ Changes: Minor doc fix (#409) -[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.3...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.4...HEAD +[0.8.4]: https://github.com/toml-rs/toml/compare/toml-v0.8.3...toml-v0.8.4 [0.8.3]: https://github.com/toml-rs/toml/compare/toml-v0.8.2...toml-v0.8.3 [0.8.2]: https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.2 [0.8.1]: https://github.com/toml-rs/toml/compare/toml-v0.8.0...toml-v0.8.1 diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index 3bf596a7..8504bfa0 100644 --- a/crates/toml/Cargo.toml +++ b/crates/toml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml" -version = "0.8.3" +version = "0.8.4" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = """ @@ -42,8 +42,8 @@ preserve_order = ["indexmap"] [dependencies] serde = "1.0.145" indexmap = { version = "2.0.0", optional = true } -toml_edit = { version = "0.20.3", path = "../toml_edit", features = ["serde"], optional = true } -toml_datetime = { version = "0.6.4", path = "../toml_datetime", features = ["serde"] } +toml_edit = { version = "0.20.4", path = "../toml_edit", features = ["serde"], optional = true } +toml_datetime = { version = "0.6.5", path = "../toml_datetime", features = ["serde"] } serde_spanned = { version = "0.6.4", path = "../serde_spanned", features = ["serde"] } [dev-dependencies] diff --git a/crates/toml_datetime/CHANGELOG.md b/crates/toml_datetime/CHANGELOG.md index 461f6582..de8a3756 100644 --- a/crates/toml_datetime/CHANGELOG.md +++ b/crates/toml_datetime/CHANGELOG.md @@ -7,6 +7,8 @@ The format is based on [Keep a Changelog]. ## [Unreleased] - ReleaseDate +## [0.6.5] - 2023-10-23 + ### Fixes - Allow leapseconds in `FromStr` @@ -44,7 +46,8 @@ MSRV is now 1.64.0 ## [0.5.0] - 2022-10-21 -[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.4...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.5...HEAD +[0.6.5]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.4...toml_datetime-v0.6.5 [0.6.4]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.3...toml_datetime-v0.6.4 [0.6.3]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.2...toml_datetime-v0.6.3 [0.6.2]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.1...toml_datetime-v0.6.2 diff --git a/crates/toml_datetime/Cargo.toml b/crates/toml_datetime/Cargo.toml index 0a4ff6f3..45da49b5 100644 --- a/crates/toml_datetime/Cargo.toml +++ b/crates/toml_datetime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_datetime" -version = "0.6.4" +version = "0.6.5" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "A TOML-compatible datetime type" diff --git a/crates/toml_edit/CHANGELOG.md b/crates/toml_edit/CHANGELOG.md index d33f922b..cb77ef6a 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.4] - 2023-10-23 + ### Fixes - *(parser)* Error on invalid days of month, accounting for leap years @@ -564,7 +566,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.20.3...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.20.4...HEAD +[0.20.4]: https://github.com/toml-rs/toml/compare/v0.20.3...v0.20.4 [0.20.3]: https://github.com/toml-rs/toml/compare/v0.20.2...v0.20.3 [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 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index 90ca52da..1a565d18 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.20.3" +version = "0.20.4" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Yet another format-preserving TOML parser." @@ -41,7 +41,7 @@ indexmap = { version = "2.0.0", features = ["std"] } winnow = "0.5.0" serde = { version = "1.0.145", optional = true } kstring = { version = "2.0.0", features = ["max_inline"], optional = true } -toml_datetime = { version = "0.6.4", path = "../toml_datetime" } +toml_datetime = { version = "0.6.5", path = "../toml_datetime" } serde_spanned = { version = "0.6.4", path = "../serde_spanned", features = ["serde"], optional = true } [dev-dependencies]