diff --git a/Cargo.lock b/Cargo.lock index eeca26fb..8b763cec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -325,7 +325,7 @@ dependencies = [ [[package]] name = "hcl-rs" -version = "0.17.0" +version = "0.17.1" dependencies = [ "hcl-edit", "hcl-primitives", diff --git a/crates/hcl-rs/CHANGELOG.md b/crates/hcl-rs/CHANGELOG.md index 6fc3eb68..a19a95a6 100644 --- a/crates/hcl-rs/CHANGELOG.md +++ b/crates/hcl-rs/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.17.1](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.17.0...hcl-rs-v0.17.1) - 2024-05-20 + +### Fixed +- don't leak internal handles during serialization ([#346](https://github.com/martinohmann/hcl-rs/pull/346)) + ## [0.17.0](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.16.9...hcl-rs-v0.17.0) - 2024-05-16 ### Added diff --git a/crates/hcl-rs/Cargo.toml b/crates/hcl-rs/Cargo.toml index e91f5fcb..6ffb7ec3 100644 --- a/crates/hcl-rs/Cargo.toml +++ b/crates/hcl-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcl-rs" -version = "0.17.0" +version = "0.17.1" authors = ["Martin Ohmann "] license = "MIT OR Apache-2.0" description = "HCL parser and formatter for rust with serde support"