From 8349bdd12df96b47d5d7f0bc9ce988dc03c57fb6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 14:25:31 +0100 Subject: [PATCH] chore: release main (#320) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 10 +++++----- Cargo.lock | 10 +++++----- crates/benchmarks/Cargo.toml | 2 +- crates/hcl-edit/CHANGELOG.md | 4 ++++ crates/hcl-edit/Cargo.toml | 4 ++-- crates/hcl-primitives/CHANGELOG.md | 7 +++++++ crates/hcl-primitives/Cargo.toml | 2 +- crates/hcl-rs/CHANGELOG.md | 5 +++++ crates/hcl-rs/Cargo.toml | 6 +++--- crates/specsuite/Cargo.toml | 2 +- 10 files changed, 34 insertions(+), 18 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e6f59456..5e01e8ce 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,7 @@ { - "crates/benchmarks": "0.0.38", - "crates/hcl-edit": "0.7.4", - "crates/hcl-primitives": "0.1.1", - "crates/hcl-rs": "0.16.6", - "crates/specsuite": "0.0.17" + "crates/benchmarks": "0.0.39", + "crates/hcl-edit": "0.7.5", + "crates/hcl-primitives": "0.1.2", + "crates/hcl-rs": "0.16.7", + "crates/specsuite": "0.0.18" } diff --git a/Cargo.lock b/Cargo.lock index eb09921f..abc3efc3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -52,7 +52,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "benchmarks" -version = "0.0.38" +version = "0.0.39" dependencies = [ "criterion", "hcl-edit", @@ -301,7 +301,7 @@ checksum = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12" [[package]] name = "hcl-edit" -version = "0.7.4" +version = "0.7.5" dependencies = [ "fnv", "hcl-primitives", @@ -314,7 +314,7 @@ dependencies = [ [[package]] name = "hcl-primitives" -version = "0.1.1" +version = "0.1.2" dependencies = [ "itoa", "kstring", @@ -325,7 +325,7 @@ dependencies = [ [[package]] name = "hcl-rs" -version = "0.16.6" +version = "0.16.7" dependencies = [ "hcl-edit", "hcl-primitives", @@ -664,7 +664,7 @@ checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043" [[package]] name = "specsuite" -version = "0.0.17" +version = "0.0.18" dependencies = [ "assert-json-diff", "hcl-rs", diff --git a/crates/benchmarks/Cargo.toml b/crates/benchmarks/Cargo.toml index b7156405..562b6bd8 100644 --- a/crates/benchmarks/Cargo.toml +++ b/crates/benchmarks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "benchmarks" -version = "0.0.38" +version = "0.0.39" publish = false edition = "2021" diff --git a/crates/hcl-edit/CHANGELOG.md b/crates/hcl-edit/CHANGELOG.md index 3e3c73ad..f48953a6 100644 --- a/crates/hcl-edit/CHANGELOG.md +++ b/crates/hcl-edit/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +* The following workspace dependencies were updated + * dependencies + * hcl-primitives bumped from 0.1.1 to 0.1.2 + ## [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 05e2a627..5dd0fa66 100644 --- a/crates/hcl-edit/Cargo.toml +++ b/crates/hcl-edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcl-edit" -version = "0.7.4" +version = "0.7.5" 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.7" -hcl-primitives = { version = "0.1.1", path = "../hcl-primitives" } +hcl-primitives = { version = "0.1.2", path = "../hcl-primitives" } vecmap-rs = "0.1.12" winnow = "0.5.15" diff --git a/crates/hcl-primitives/CHANGELOG.md b/crates/hcl-primitives/CHANGELOG.md index 0fe8b99c..cd73e4b4 100644 --- a/crates/hcl-primitives/CHANGELOG.md +++ b/crates/hcl-primitives/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.2](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.1...hcl-primitives-v0.1.2) (2024-01-04) + + +### Bug Fixes + +* **cargo:** add more keywords ([7125a8c](https://github.com/martinohmann/hcl-rs/commit/7125a8cc05c95b9eaa872d8eb95840c583309575)) + ## [0.1.1](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.0...hcl-primitives-v0.1.1) (2023-06-15) diff --git a/crates/hcl-primitives/Cargo.toml b/crates/hcl-primitives/Cargo.toml index 825f3686..2876745d 100644 --- a/crates/hcl-primitives/Cargo.toml +++ b/crates/hcl-primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcl-primitives" -version = "0.1.1" +version = "0.1.2" 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 fa56f7d1..c0ab1637 100644 --- a/crates/hcl-rs/CHANGELOG.md +++ b/crates/hcl-rs/CHANGELOG.md @@ -24,6 +24,11 @@ * 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.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 638e7c73..2edc22ec 100644 --- a/crates/hcl-rs/Cargo.toml +++ b/crates/hcl-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcl-rs" -version = "0.16.6" +version = "0.16.7" 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.0.2", features = ["serde"] } itoa = "1.0.9" -hcl-edit = { version = "0.7.4", path = "../hcl-edit" } -hcl-primitives = { version = "0.1.1", path = "../hcl-primitives", features = ["serde"] } +hcl-edit = { version = "0.7.5", path = "../hcl-edit" } +hcl-primitives = { version = "0.1.2", path = "../hcl-primitives", features = ["serde"] } serde = { version = "1.0.188", features = ["derive"] } vecmap-rs = { version = "0.1.12", features = ["serde"] } diff --git a/crates/specsuite/Cargo.toml b/crates/specsuite/Cargo.toml index fd5fc1cc..c3c872bd 100644 --- a/crates/specsuite/Cargo.toml +++ b/crates/specsuite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "specsuite" -version = "0.0.17" +version = "0.0.18" publish = false edition = "2021"