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 Dec 27, 2024
1 parent 6b7f556 commit 6e8159e
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

8 changes: 8 additions & 0 deletions crates/hcl-edit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.8.4](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.8.3...hcl-edit-v0.8.4) - 2024-12-27

### Other

- address clippy lints
- remove some unnecessary explicit lifetimes
- Fix all warnings (#391)

## [0.8.3](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.8.2...hcl-edit-v0.8.3) - 2024-10-04

### Other
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.3"
version = "0.8.4"
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.7", path = "../hcl-primitives" }
hcl-primitives = { version = "0.1.8", 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.8](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.7...hcl-primitives-v0.1.8) - 2024-12-27

### Other

- *(deps)* bump unicode-ident from 1.0.13 to 1.0.14 (#389)
- address clippy lints
- Fix all warnings (#391)

## [0.1.7](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.6...hcl-primitives-v0.1.7) - 2024-10-04

### 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.7"
version = "0.1.8"
authors = ["Martin Ohmann <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Primitives used by the HCL sub-languages"
Expand Down
9 changes: 9 additions & 0 deletions crates/hcl-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.18.3](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.18.2...hcl-rs-v0.18.3) - 2024-12-27

### Other

- *(deps)* bump serde_json from 1.0.128 to 1.0.134 (#395)
- *(deps)* bump indexmap from 2.5.0 to 2.7.0 (#388)
- address clippy lints
- Fix all warnings (#391)

## [0.18.2](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.18.1...hcl-rs-v0.18.2) - 2024-10-04

### Other
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.2"
version = "0.18.3"
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.7.0", features = ["serde"] }
itoa = "1.0.11"
hcl-edit = { version = "0.8.3", path = "../hcl-edit" }
hcl-primitives = { version = "0.1.7", path = "../hcl-primitives", features = ["serde"] }
hcl-edit = { version = "0.8.4", path = "../hcl-edit" }
hcl-primitives = { version = "0.1.8", 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 6e8159e

Please sign in to comment.