diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6f5ceadd..53b172a1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,7 @@ { - "crates/benchmarks": "0.0.33", - "crates/hcl-edit": "0.7.1", + "crates/benchmarks": "0.0.34", + "crates/hcl-edit": "0.7.2", "crates/hcl-primitives": "0.1.1", - "crates/hcl-rs": "0.16.1", - "crates/specsuite": "0.0.12" + "crates/hcl-rs": "0.16.2", + "crates/specsuite": "0.0.13" } diff --git a/Cargo.lock b/Cargo.lock index 6e478f86..9593d240 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -52,7 +52,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "benchmarks" -version = "0.0.33" +version = "0.0.34" dependencies = [ "criterion", "hcl-edit", @@ -311,7 +311,7 @@ checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" [[package]] name = "hcl-edit" -version = "0.7.1" +version = "0.7.2" dependencies = [ "fnv", "hcl-primitives", @@ -335,7 +335,7 @@ dependencies = [ [[package]] name = "hcl-rs" -version = "0.16.1" +version = "0.16.2" dependencies = [ "hcl-edit", "hcl-primitives", @@ -685,7 +685,7 @@ checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043" [[package]] name = "specsuite" -version = "0.0.12" +version = "0.0.13" dependencies = [ "assert-json-diff", "hcl-rs", diff --git a/crates/benchmarks/Cargo.toml b/crates/benchmarks/Cargo.toml index 7f3c1c18..6e1a98f4 100644 --- a/crates/benchmarks/Cargo.toml +++ b/crates/benchmarks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "benchmarks" -version = "0.0.33" +version = "0.0.34" publish = false edition = "2021" diff --git a/crates/hcl-edit/CHANGELOG.md b/crates/hcl-edit/CHANGELOG.md index e9e846c2..4e7782dc 100644 --- a/crates/hcl-edit/CHANGELOG.md +++ b/crates/hcl-edit/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.7.2](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.7.1...hcl-edit-v0.7.2) (2023-07-14) + + +### Bug Fixes + +* **structure:** handle absence of trailing newline in body ([#273](https://github.com/martinohmann/hcl-rs/issues/273)) ([2f54cb1](https://github.com/martinohmann/hcl-rs/commit/2f54cb188b87678de10975cc4f3bb399e093234a)), closes [#270](https://github.com/martinohmann/hcl-rs/issues/270) + ## [0.7.1](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.7.0...hcl-edit-v0.7.1) (2023-07-14) diff --git a/crates/hcl-edit/Cargo.toml b/crates/hcl-edit/Cargo.toml index 889962a1..741d08f1 100644 --- a/crates/hcl-edit/Cargo.toml +++ b/crates/hcl-edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcl-edit" -version = "0.7.1" +version = "0.7.2" 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 92345cb7..40c7d383 100644 --- a/crates/hcl-rs/CHANGELOG.md +++ b/crates/hcl-rs/CHANGELOG.md @@ -12,6 +12,10 @@ * dependencies * hcl-edit bumped from 0.7.0 to 0.7.1 +* The following workspace dependencies were updated + * dependencies + * hcl-edit bumped from 0.7.1 to 0.7.2 + ## [0.16.0](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.15.0...hcl-rs-v0.16.0) (2023-07-13) diff --git a/crates/hcl-rs/Cargo.toml b/crates/hcl-rs/Cargo.toml index b0117bb8..12422929 100644 --- a/crates/hcl-rs/Cargo.toml +++ b/crates/hcl-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcl-rs" -version = "0.16.1" +version = "0.16.2" 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.0.0", features = ["serde"] } itoa = "1.0.8" -hcl-edit = { version = "0.7.1", path = "../hcl-edit" } +hcl-edit = { version = "0.7.2", path = "../hcl-edit" } hcl-primitives = { version = "0.1.1", path = "../hcl-primitives", features = ["serde"] } serde = { version = "1.0.156", features = ["derive"] } vecmap-rs = { version = "0.1.11", features = ["serde"] } diff --git a/crates/specsuite/Cargo.toml b/crates/specsuite/Cargo.toml index 1e32ab82..e739960c 100644 --- a/crates/specsuite/Cargo.toml +++ b/crates/specsuite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "specsuite" -version = "0.0.12" +version = "0.0.13" publish = false edition = "2021"