diff --git a/Cargo.lock b/Cargo.lock index f77f375b..94be4706 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -301,7 +301,7 @@ checksum = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12" [[package]] name = "hcl-edit" -version = "0.8.1" +version = "0.8.2" dependencies = [ "fnv", "hcl-primitives", @@ -314,7 +314,7 @@ dependencies = [ [[package]] name = "hcl-primitives" -version = "0.1.5" +version = "0.1.6" dependencies = [ "itoa", "kstring", @@ -325,7 +325,7 @@ dependencies = [ [[package]] name = "hcl-rs" -version = "0.18.0" +version = "0.18.1" dependencies = [ "hcl-edit", "hcl-primitives", diff --git a/crates/hcl-edit/CHANGELOG.md b/crates/hcl-edit/CHANGELOG.md index e20ce2b0..35c84301 100644 --- a/crates/hcl-edit/CHANGELOG.md +++ b/crates/hcl-edit/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.8.2](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.8.1...hcl-edit-v0.8.2) - 2024-09-25 + +### Fixed + +- *(parser)* allow newlines in function calls and arrays ([#368](https://github.com/martinohmann/hcl-rs/pull/368)) + ## [0.8.1](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.8.0...hcl-edit-v0.8.1) - 2024-05-24 ### Fixed diff --git a/crates/hcl-edit/Cargo.toml b/crates/hcl-edit/Cargo.toml index eb45f407..a3487299 100644 --- a/crates/hcl-edit/Cargo.toml +++ b/crates/hcl-edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcl-edit" -version = "0.8.1" +version = "0.8.2" authors = ["Martin Ohmann "] license = "MIT OR Apache-2.0" description = "Parse and modify HCL while preserving comments and whitespace" @@ -31,7 +31,7 @@ perf = ["hcl-primitives/perf"] [dependencies] fnv = "1.0" -hcl-primitives = { version = "0.1.5", path = "../hcl-primitives" } +hcl-primitives = { version = "0.1.6", path = "../hcl-primitives" } vecmap-rs = "0.2" winnow = "0.6" diff --git a/crates/hcl-primitives/CHANGELOG.md b/crates/hcl-primitives/CHANGELOG.md index fa3466c5..66bb2f8c 100644 --- a/crates/hcl-primitives/CHANGELOG.md +++ b/crates/hcl-primitives/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.1.6](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.5...hcl-primitives-v0.1.6) - 2024-09-25 + +### Other + +- *(deps)* bump ryu from 1.0.17 to 1.0.18 ([#358](https://github.com/martinohmann/hcl-rs/pull/358)) +- *(deps)* bump kstring from 2.0.0 to 2.0.2 ([#364](https://github.com/martinohmann/hcl-rs/pull/364)) +- *(deps)* bump serde from 1.0.197 to 1.0.210 ([#371](https://github.com/martinohmann/hcl-rs/pull/371)) + ## [0.1.5](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.4...hcl-primitives-v0.1.5) - 2024-05-16 ### Other diff --git a/crates/hcl-primitives/Cargo.toml b/crates/hcl-primitives/Cargo.toml index fd8f79f7..edc21667 100644 --- a/crates/hcl-primitives/Cargo.toml +++ b/crates/hcl-primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcl-primitives" -version = "0.1.5" +version = "0.1.6" authors = ["Martin Ohmann "] license = "MIT OR Apache-2.0" description = "Primitives used by the HCL sub-languages" diff --git a/crates/hcl-rs/CHANGELOG.md b/crates/hcl-rs/CHANGELOG.md index 1b21a727..770bcbae 100644 --- a/crates/hcl-rs/CHANGELOG.md +++ b/crates/hcl-rs/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.18.1](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.18.0...hcl-rs-v0.18.1) - 2024-09-25 + +### Other + +- *(deps)* bump serde from 1.0.197 to 1.0.210 ([#371](https://github.com/martinohmann/hcl-rs/pull/371)) +- *(deps)* bump serde_json from 1.0.116 to 1.0.128 ([#370](https://github.com/martinohmann/hcl-rs/pull/370)) + ## [0.18.0](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.17.2...hcl-rs-v0.18.0) - 2024-05-24 ### Fixed diff --git a/crates/hcl-rs/Cargo.toml b/crates/hcl-rs/Cargo.toml index 7087bfea..ce8eb25d 100644 --- a/crates/hcl-rs/Cargo.toml +++ b/crates/hcl-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcl-rs" -version = "0.18.0" +version = "0.18.1" authors = ["Martin Ohmann "] license = "MIT OR Apache-2.0" description = "HCL parser and formatter for rust with serde support" @@ -36,8 +36,8 @@ perf = ["hcl-edit/perf", "hcl-primitives/perf"] [dependencies] indexmap = { version = "2.2.6", features = ["serde"] } itoa = "1.0.11" -hcl-edit = { version = "0.8.1", path = "../hcl-edit" } -hcl-primitives = { version = "0.1.5", path = "../hcl-primitives", features = ["serde"] } +hcl-edit = { version = "0.8.2", path = "../hcl-edit" } +hcl-primitives = { version = "0.1.6", path = "../hcl-primitives", features = ["serde"] } serde = { version = "1.0.210", features = ["derive"] } vecmap-rs = { version = "0.2", features = ["serde"] }