From c8e6d3d1d13c6676ab2307c023eb094f0928c895 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 6 Feb 2023 17:14:48 -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 6625981f..224ab45b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -944,7 +944,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.19.1" +version = "0.19.2" dependencies = [ "indexmap", "kstring", diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index f3ff3ce4..2b298ac2 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.1", path = "../toml_edit", features = ["serde"], optional = true } +toml_edit = { version = "0.19.2", 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 0ee413d9..d091d9f0 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.2] - 2023-02-06 + ### Fixes - *(parser)* Error on `[dep.a]\n[dep]\n[dep]` @@ -448,7 +450,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.1...HEAD +[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.2...HEAD +[0.19.2]: https://github.com/toml-rs/toml/compare/v0.19.1...v0.19.2 [0.19.1]: https://github.com/toml-rs/toml/compare/v0.19.0...v0.19.1 [0.19.0]: https://github.com/toml-rs/toml/compare/v0.18.1...v0.19.0 [0.18.1]: https://github.com/toml-rs/toml/compare/v0.18.0...v0.18.1 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index 44df9a87..ccdd537e 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.19.1" +version = "0.19.2" readme = "README.md" license = "MIT OR Apache-2.0" keywords = ["encoding", "toml"]