Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Sep 25, 2024
1 parent 06c734c commit 8b31241
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 9 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.

6 changes: 6 additions & 0 deletions crates/hcl-edit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.8.1"
version = "0.8.2"
authors = ["Martin Ohmann <[email protected]>"]
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.5", path = "../hcl-primitives" }
hcl-primitives = { version = "0.1.6", path = "../hcl-primitives" }
vecmap-rs = "0.2"
winnow = "0.6"

Expand Down
8 changes: 8 additions & 0 deletions crates/hcl-primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.5"
version = "0.1.6"
authors = ["Martin Ohmann <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Primitives used by the HCL sub-languages"
Expand Down
7 changes: 7 additions & 0 deletions crates/hcl-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.18.0"
version = "0.18.1"
authors = ["Martin Ohmann <[email protected]>"]
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.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"] }

Expand Down

0 comments on commit 8b31241

Please sign in to comment.