Skip to content

Commit

Permalink
chore: release (#331)
Browse files Browse the repository at this point in the history
* chore: release

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* chore: adjust release notes

---------

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: martinohmann <martinohmann@gmail.com>
  • Loading branch information
github-actions[bot] and martinohmann committed Apr 8, 2024
1 parent 80a0d2e commit 1121927
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 39 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions crates/hcl-edit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# 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
- *(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)

Expand Down
4 changes: 2 additions & 2 deletions crates/hcl-edit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hcl-edit"
version = "0.7.5"
version = "0.7.6"
authors = ["Martin Ohmann <martinohmann@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Parse and modify HCL while preserving comments and whitespace"
Expand Down Expand Up @@ -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"

Expand Down
5 changes: 5 additions & 0 deletions crates/hcl-primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion crates/hcl-primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hcl-primitives"
version = "0.1.2"
version = "0.1.3"
authors = ["Martin Ohmann <martinohmann@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Primitives used by the HCL sub-languages"
Expand Down
32 changes: 5 additions & 27 deletions crates/hcl-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,11 @@
# 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
## [0.16.8](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.16.7...hcl-rs-v0.16.8) - 2024-04-08

* 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
### 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)

Expand Down
6 changes: 3 additions & 3 deletions crates/hcl-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hcl-rs"
version = "0.16.7"
version = "0.16.8"
authors = ["Martin Ohmann <martinohmann@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "HCL parser and formatter for rust with serde support"
Expand Down Expand Up @@ -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"] }

Expand Down

0 comments on commit 1121927

Please sign in to comment.