From c76675627684c53e6101b9ea35ba90b1b8428cbd Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 8 Jul 2024 14:30:30 -0500 Subject: [PATCH] chore: Release --- Cargo.lock | 2 +- crates/toml/Cargo.toml | 2 +- crates/toml_edit/CHANGELOG.md | 5 ++++- crates/toml_edit/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c6d4d352..5d6c0f10 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -771,7 +771,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.14" +version = "0.22.15" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index be9342d6..a0bbb67d 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.22.14", path = "../toml_edit", default-features = false, features = ["serde"], optional = true } +toml_edit = { version = "0.22.15", 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 80cc3b79..9288f703 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.15] - 2024-07-08 + ### Features - Write out the `Decor` for the root `Table` (accessible through `DocumentMut`) @@ -707,7 +709,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.14...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.15...HEAD +[0.22.15]: https://github.com/toml-rs/toml/compare/v0.22.14...v0.22.15 [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 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index 40326fb8..59352b6a 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.22.14" +version = "0.22.15" keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Yet another format-preserving TOML parser."