Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #397

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-28

### 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
9 changes: 9 additions & 0 deletions crates/hcl-primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.1.8](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.7...hcl-primitives-v0.1.8) - 2024-12-28

### Other

- *(deps)* bump serde from 1.0.210 to 1.0.217 (#396)
- *(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
10 changes: 10 additions & 0 deletions crates/hcl-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

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

### Other

- *(deps)* bump serde from 1.0.210 to 1.0.217 (#396)
- *(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.217", features = ["derive"] }
vecmap-rs = { version = "0.2", features = ["serde"] }

Expand Down