From 01936576d67b44773f742fd24332453ca6a6499e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 16:43:02 +0000 Subject: [PATCH 1/2] chore: release Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- Cargo.lock | 6 +++--- crates/hcl-edit/CHANGELOG.md | 8 ++++++++ crates/hcl-edit/Cargo.toml | 4 ++-- crates/hcl-primitives/CHANGELOG.md | 5 +++++ crates/hcl-primitives/Cargo.toml | 2 +- crates/hcl-rs/CHANGELOG.md | 7 +++++++ crates/hcl-rs/Cargo.toml | 6 +++--- 7 files changed, 29 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 28721a46..397a6d24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -301,7 +301,7 @@ checksum = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12" [[package]] name = "hcl-edit" -version = "0.7.5" +version = "0.7.6" dependencies = [ "fnv", "hcl-primitives", @@ -314,7 +314,7 @@ dependencies = [ [[package]] name = "hcl-primitives" -version = "0.1.2" +version = "0.1.3" dependencies = [ "itoa", "kstring", @@ -325,7 +325,7 @@ dependencies = [ [[package]] name = "hcl-rs" -version = "0.16.7" +version = "0.16.8" dependencies = [ "hcl-edit", "hcl-primitives", diff --git a/crates/hcl-edit/CHANGELOG.md b/crates/hcl-edit/CHANGELOG.md index f48953a6..29234493 100644 --- a/crates/hcl-edit/CHANGELOG.md +++ b/crates/hcl-edit/CHANGELOG.md @@ -4,6 +4,14 @@ * dependencies * hcl-primitives bumped from 0.1.1 to 0.1.2 +## [0.7.6](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.7.5...hcl-edit-v0.7.6) - 2024-04-08 + +### Fixed +- *(parser)* allow newlines in parenthesis expressions ([#330](https://github.com/martinohmann/hcl-rs/pull/330)) + +### Other +- update winnow to 0.6+ and vecmap-rs to 0.2+ ([#324](https://github.com/martinohmann/hcl-rs/pull/324)) + ## [0.7.4](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.7.3...hcl-edit-v0.7.4) (2023-09-27) diff --git a/crates/hcl-edit/Cargo.toml b/crates/hcl-edit/Cargo.toml index cb128fff..b86247d1 100644 --- a/crates/hcl-edit/Cargo.toml +++ b/crates/hcl-edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcl-edit" -version = "0.7.5" +version = "0.7.6" 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.2", path = "../hcl-primitives" } +hcl-primitives = { version = "0.1.3", 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 cd73e4b4..6e163199 100644 --- a/crates/hcl-primitives/CHANGELOG.md +++ b/crates/hcl-primitives/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.1.3](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.2...hcl-primitives-v0.1.3) - 2024-04-08 + +### Other +- *(deps)* bump ryu from 1.0.15 to 1.0.17 ([#325](https://github.com/martinohmann/hcl-rs/pull/325)) + ## [0.1.2](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.1...hcl-primitives-v0.1.2) (2024-01-04) diff --git a/crates/hcl-primitives/Cargo.toml b/crates/hcl-primitives/Cargo.toml index 7c017570..2b651afa 100644 --- a/crates/hcl-primitives/Cargo.toml +++ b/crates/hcl-primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcl-primitives" -version = "0.1.2" +version = "0.1.3" 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 c0ab1637..6e098126 100644 --- a/crates/hcl-rs/CHANGELOG.md +++ b/crates/hcl-rs/CHANGELOG.md @@ -29,6 +29,13 @@ * hcl-edit bumped from 0.7.4 to 0.7.5 * hcl-primitives bumped from 0.1.1 to 0.1.2 +## [0.16.8](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.16.7...hcl-rs-v0.16.8) - 2024-04-08 + +### Other +- update winnow to 0.6+ and vecmap-rs to 0.2+ ([#324](https://github.com/martinohmann/hcl-rs/pull/324)) +- *(deps)* bump serde_json from 1.0.107 to 1.0.112 ([#328](https://github.com/martinohmann/hcl-rs/pull/328)) +- *(deps)* bump indexmap from 2.0.2 to 2.2.6 ([#329](https://github.com/martinohmann/hcl-rs/pull/329)) + ## [0.16.5](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.16.4...hcl-rs-v0.16.5) (2023-09-17) diff --git a/crates/hcl-rs/Cargo.toml b/crates/hcl-rs/Cargo.toml index da36271b..d44a654f 100644 --- a/crates/hcl-rs/Cargo.toml +++ b/crates/hcl-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcl-rs" -version = "0.16.7" +version = "0.16.8" 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.9" -hcl-edit = { version = "0.7.5", path = "../hcl-edit" } -hcl-primitives = { version = "0.1.2", path = "../hcl-primitives", features = ["serde"] } +hcl-edit = { version = "0.7.6", path = "../hcl-edit" } +hcl-primitives = { version = "0.1.3", path = "../hcl-primitives", features = ["serde"] } serde = { version = "1.0.188", features = ["derive"] } vecmap-rs = { version = "0.2", features = ["serde"] } From 0ee8dd73eb7cf753db0b21422596f796e66bd8f3 Mon Sep 17 00:00:00 2001 From: martinohmann Date: Mon, 8 Apr 2024 18:44:31 +0200 Subject: [PATCH 2/2] chore: adjust release notes --- crates/hcl-edit/CHANGELOG.md | 4 ---- crates/hcl-rs/CHANGELOG.md | 29 ----------------------------- 2 files changed, 33 deletions(-) diff --git a/crates/hcl-edit/CHANGELOG.md b/crates/hcl-edit/CHANGELOG.md index 29234493..53151ea7 100644 --- a/crates/hcl-edit/CHANGELOG.md +++ b/crates/hcl-edit/CHANGELOG.md @@ -1,9 +1,5 @@ # Changelog -* The following workspace dependencies were updated - * dependencies - * hcl-primitives bumped from 0.1.1 to 0.1.2 - ## [0.7.6](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.7.5...hcl-edit-v0.7.6) - 2024-04-08 ### Fixed diff --git a/crates/hcl-rs/CHANGELOG.md b/crates/hcl-rs/CHANGELOG.md index 6e098126..49795fe0 100644 --- a/crates/hcl-rs/CHANGELOG.md +++ b/crates/hcl-rs/CHANGELOG.md @@ -1,34 +1,5 @@ # Changelog -* The following workspace dependencies were updated - * dependencies - * hcl-primitives bumped from 0.0.2 to 0.0.3 - -* The following workspace dependencies were updated - * dependencies - * hcl-edit bumped from 0.6.6 to 0.6.7 - -* The following workspace dependencies were updated - * 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 - -* The following workspace dependencies were updated - * dependencies - * hcl-edit bumped from 0.7.2 to 0.7.3 - -* The following workspace dependencies were updated - * dependencies - * hcl-edit bumped from 0.7.3 to 0.7.4 - -* The following workspace dependencies were updated - * dependencies - * hcl-edit bumped from 0.7.4 to 0.7.5 - * hcl-primitives bumped from 0.1.1 to 0.1.2 - ## [0.16.8](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.16.7...hcl-rs-v0.16.8) - 2024-04-08 ### Other