From 39eea9e3417badf01b276f3b960c57fd34cb1b35 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 7 Sep 2023 21:09:01 -0500 Subject: [PATCH] chore: Release --- Cargo.lock | 6 +++--- crates/toml/CHANGELOG.md | 5 ++++- crates/toml/Cargo.toml | 4 ++-- crates/toml_edit/CHANGELOG.md | 5 ++++- crates/toml_edit/Cargo.toml | 2 +- 5 files changed, 14 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a18c0741..51d7909b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -886,7 +886,7 @@ dependencies = [ [[package]] name = "toml" -version = "0.7.6" +version = "0.7.7" dependencies = [ "indexmap", "serde", @@ -939,7 +939,7 @@ dependencies = [ "serde", "serde_json", "toml 0.5.10", - "toml 0.7.6", + "toml 0.7.7", "toml_edit", ] @@ -952,7 +952,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.19.14" +version = "0.19.15" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/CHANGELOG.md b/crates/toml/CHANGELOG.md index 4c0ce069..2315dec4 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.7.7] - 2023-09-08 + ### Fixes - *(ser)* Error rather than drop whole arrays when a single element is `None` @@ -138,7 +140,8 @@ Changes: Minor doc fix (#409) -[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.7.6...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.7.7...HEAD +[0.7.7]: https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.7.7 [0.7.6]: https://github.com/toml-rs/toml/compare/toml-v0.7.5...toml-v0.7.6 [0.7.5]: https://github.com/toml-rs/toml/compare/toml-v0.7.4...toml-v0.7.5 [0.7.4]: https://github.com/toml-rs/toml/compare/toml-v0.7.3...toml-v0.7.4 diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index 99f567c3..55b6a450 100644 --- a/crates/toml/Cargo.toml +++ b/crates/toml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml" -version = "0.7.6" +version = "0.7.7" 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.19.14", path = "../toml_edit", features = ["serde"], optional = true } +toml_edit = { version = "0.19.15", 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 32dd949f..6ad73a6a 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.19.15] - 2023-09-08 + ### Fixes - *(ser)* Error rather than drop whole arrays when a single element is `None` @@ -530,7 +532,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.14...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.15...HEAD +[0.19.15]: https://github.com/toml-rs/toml/compare/v0.19.14...v0.19.15 [0.19.14]: https://github.com/toml-rs/toml/compare/v0.19.13...v0.19.14 [0.19.13]: https://github.com/toml-rs/toml/compare/v0.19.12...v0.19.13 [0.19.12]: https://github.com/toml-rs/toml/compare/v0.19.11...v0.19.12 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index 666e049a..7807d113 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.19.14" +version = "0.19.15" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Yet another format-preserving TOML parser."