Skip to content

Commit bb2c805

Browse files
chore: release (#332)
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>
1 parent 5a198d6 commit bb2c805

File tree

7 files changed

+25
-9
lines changed

7 files changed

+25
-9
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/hcl-edit/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [0.7.7](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.7.6...hcl-edit-v0.7.7) - 2024-04-13
4+
5+
### Other
6+
- expose hcl-edit parser error message ([#334](https://github.com/martinohmann/hcl-rs/pull/334))
7+
- update notice in README
8+
39
## [0.7.6](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.7.5...hcl-edit-v0.7.6) - 2024-04-08
410

511
### Fixed

crates/hcl-edit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hcl-edit"
3-
version = "0.7.6"
3+
version = "0.7.7"
44
authors = ["Martin Ohmann <martinohmann@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
description = "Parse and modify HCL while preserving comments and whitespace"
@@ -31,7 +31,7 @@ perf = ["hcl-primitives/perf"]
3131

3232
[dependencies]
3333
fnv = "1.0"
34-
hcl-primitives = { version = "0.1.3", path = "../hcl-primitives" }
34+
hcl-primitives = { version = "0.1.4", path = "../hcl-primitives" }
3535
vecmap-rs = "0.2"
3636
winnow = "0.6"
3737

crates/hcl-primitives/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [0.1.4](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.3...hcl-primitives-v0.1.4) - 2024-04-13
4+
5+
### Other
6+
- *(clippy)* address new pedantic lints in nightly
7+
38
## [0.1.3](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.2...hcl-primitives-v0.1.3) - 2024-04-08
49

510
### Other

crates/hcl-primitives/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hcl-primitives"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
authors = ["Martin Ohmann <martinohmann@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
description = "Primitives used by the HCL sub-languages"

crates/hcl-rs/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [0.16.9](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.16.8...hcl-rs-v0.16.9) - 2024-04-13
4+
5+
### Other
6+
- *(clippy)* address new pedantic lints in nightly
7+
38
## [0.16.8](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.16.7...hcl-rs-v0.16.8) - 2024-04-08
49

510
### Other

crates/hcl-rs/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hcl-rs"
3-
version = "0.16.8"
3+
version = "0.16.9"
44
authors = ["Martin Ohmann <martinohmann@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
description = "HCL parser and formatter for rust with serde support"
@@ -36,8 +36,8 @@ perf = ["hcl-edit/perf", "hcl-primitives/perf"]
3636
[dependencies]
3737
indexmap = { version = "2.2.6", features = ["serde"] }
3838
itoa = "1.0.9"
39-
hcl-edit = { version = "0.7.6", path = "../hcl-edit" }
40-
hcl-primitives = { version = "0.1.3", path = "../hcl-primitives", features = ["serde"] }
39+
hcl-edit = { version = "0.7.7", path = "../hcl-edit" }
40+
hcl-primitives = { version = "0.1.4", path = "../hcl-primitives", features = ["serde"] }
4141
serde = { version = "1.0.188", features = ["derive"] }
4242
vecmap-rs = { version = "0.2", features = ["serde"] }
4343

0 commit comments

Comments
 (0)