diff --git a/Cargo.lock b/Cargo.lock index c6ff643d..bfcf6d07 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -922,7 +922,7 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.16.0" +version = "0.16.1" dependencies = [ "criterion", "indexmap", diff --git a/crates/toml_edit/CHANGELOG.md b/crates/toml_edit/CHANGELOG.md index 8cd50974..04789baa 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.16.1] - 2022-12-27 + ### Fixes - Prevent stackoverflows with a recusion limit. Disable with `unbounded` feature flag @@ -359,7 +361,8 @@ This release was sponsored by Futurewei - `array.push` now returns a `Result`. -[Unreleased]: https://github.com/toml-rs/toml_edit/compare/v0.16.0...HEAD +[Unreleased]: https://github.com/toml-rs/toml_edit/compare/v0.16.1...HEAD +[0.16.1]: https://github.com/toml-rs/toml_edit/compare/v0.16.0...v0.16.1 [0.16.0]: https://github.com/toml-rs/toml_edit/compare/v0.15.0...v0.16.0 [0.15.0]: https://github.com/toml-rs/toml_edit/compare/v0.14.4...v0.15.0 [0.14.4]: https://github.com/toml-rs/toml_edit/compare/v0.14.3...v0.14.4 diff --git a/crates/toml_edit/Cargo.toml b/crates/toml_edit/Cargo.toml index ae02bef6..6d06a3db 100644 --- a/crates/toml_edit/Cargo.toml +++ b/crates/toml_edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml_edit" -version = "0.16.0" +version = "0.16.1" readme = "README.md" license = "MIT/Apache-2.0" keywords = ["encoding", "toml"]