From e4b5ed49227aaa71a033c50720957a63dbd117e8 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Wed, 8 Mar 2023 00:19:55 -0600 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 a903b22e..5f907709 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -932,7 +932,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.19.4" +version = "0.19.5" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index 6c84e7d0..0e7a48fe 100644 --- a/crates/toml/Cargo.toml +++ b/crates/toml/Cargo.toml @@ -51,7 +51,7 @@ preserve_order = ["indexmap"] [dependencies] serde = "1.0.145" indexmap = { version = "1.9.1", optional = true } -toml_edit = { version = "0.19.4", path = "../toml_edit", features = ["serde"], optional = true } +toml_edit = { version = "0.19.5", path = "../toml_edit", features = ["serde"], optional = true } toml_datetime = { version = "0.6.1", path = "../toml_datetime", features = ["serde"] } serde_spanned = { version = "0.6.1", path = "../serde_spanned", features = ["serde"] } diff --git a/crates/toml_edit/CHANGELOG.md b/crates/toml_edit/CHANGELOG.md index 20e71e33..e017c2a1 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.5] - 2023-03-08 + ### Fixes - Ensure indexmap's build doesn't break by forcing the `std` feature @@ -466,7 +468,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.4...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.5...HEAD +[0.19.5]: https://github.com/toml-rs/toml/compare/v0.19.4...v0.19.5 [0.19.4]: https://github.com/toml-rs/toml/compare/v0.19.3...v0.19.4 [0.19.3]: https://github.com/toml-rs/toml/compare/v0.19.2...v0.19.3 [0.19.2]: https://github.com/toml-rs/toml/compare/v0.19.1...v0.19.2 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index 414b63cc..80d055e3 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.19.4" +version = "0.19.5" readme = "README.md" license = "MIT OR Apache-2.0" keywords = ["encoding", "toml"]