diff --git a/Cargo.lock b/Cargo.lock index 8b763cec..00487a9d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -325,7 +325,7 @@ dependencies = [ [[package]] name = "hcl-rs" -version = "0.17.1" +version = "0.17.2" dependencies = [ "hcl-edit", "hcl-primitives", diff --git a/crates/hcl-rs/CHANGELOG.md b/crates/hcl-rs/CHANGELOG.md index a19a95a6..5abc85e5 100644 --- a/crates/hcl-rs/CHANGELOG.md +++ b/crates/hcl-rs/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.17.2](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.17.1...hcl-rs-v0.17.2) - 2024-05-21 + +### Added +- add `from_value` function for deserializing HCL `Value`. ([#348](https://github.com/martinohmann/hcl-rs/pull/348)) + ## [0.17.1](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.17.0...hcl-rs-v0.17.1) - 2024-05-20 ### Fixed diff --git a/crates/hcl-rs/Cargo.toml b/crates/hcl-rs/Cargo.toml index 6ffb7ec3..f05c1694 100644 --- a/crates/hcl-rs/Cargo.toml +++ b/crates/hcl-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcl-rs" -version = "0.17.1" +version = "0.17.2" authors = ["Martin Ohmann "] license = "MIT OR Apache-2.0" description = "HCL parser and formatter for rust with serde support"