diff --git a/Cargo.lock b/Cargo.lock index a8dd0eed..a2b58005 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -301,7 +301,7 @@ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" [[package]] name = "hcl-edit" -version = "0.8.4" +version = "0.8.5" dependencies = [ "fnv", "hcl-primitives", @@ -325,7 +325,7 @@ dependencies = [ [[package]] name = "hcl-rs" -version = "0.18.3" +version = "0.18.4" dependencies = [ "hcl-edit", "hcl-primitives", diff --git a/crates/hcl-edit/CHANGELOG.md b/crates/hcl-edit/CHANGELOG.md index 243155f2..cdcf4406 100644 --- a/crates/hcl-edit/CHANGELOG.md +++ b/crates/hcl-edit/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.8.5](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.8.4...hcl-edit-v0.8.5) - 2025-02-01 + +### Other + +- upgrade to winnow 0.7 (#403) +- address new clippy lints + ## [0.8.4](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.8.3...hcl-edit-v0.8.4) - 2025-01-10 ### Other diff --git a/crates/hcl-edit/Cargo.toml b/crates/hcl-edit/Cargo.toml index 5983960a..284f7b34 100644 --- a/crates/hcl-edit/Cargo.toml +++ b/crates/hcl-edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcl-edit" -version = "0.8.4" +version = "0.8.5" authors = ["Martin Ohmann "] license = "MIT OR Apache-2.0" description = "Parse and modify HCL while preserving comments and whitespace" diff --git a/crates/hcl-rs/CHANGELOG.md b/crates/hcl-rs/CHANGELOG.md index 19264bb8..3fbf28f6 100644 --- a/crates/hcl-rs/CHANGELOG.md +++ b/crates/hcl-rs/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.18.4](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.18.3...hcl-rs-v0.18.4) - 2025-02-01 + +### Other + +- address new clippy lints + ## [0.18.3](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.18.2...hcl-rs-v0.18.3) - 2025-01-10 ### Added diff --git a/crates/hcl-rs/Cargo.toml b/crates/hcl-rs/Cargo.toml index cc07990f..7bb8fe8e 100644 --- a/crates/hcl-rs/Cargo.toml +++ b/crates/hcl-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcl-rs" -version = "0.18.3" +version = "0.18.4" authors = ["Martin Ohmann "] license = "MIT OR Apache-2.0" description = "HCL parser and formatter for rust with serde support" @@ -36,7 +36,7 @@ perf = ["hcl-edit/perf", "hcl-primitives/perf"] [dependencies] indexmap = { version = "2.7.0", features = ["serde"] } itoa = "1.0.14" -hcl-edit = { version = "0.8.4", path = "../hcl-edit" } +hcl-edit = { version = "0.8.5", path = "../hcl-edit" } hcl-primitives = { version = "0.1.8", path = "../hcl-primitives", features = ["serde"] } serde = { version = "1.0.217", features = ["derive"] } vecmap-rs = { version = "0.2", features = ["serde"] }