Skip to content

Commit 3ecb8b5

Browse files
chore: release (#369)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 1d4113a commit 3ecb8b5

File tree

7 files changed

+35
-9
lines changed

7 files changed

+35
-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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [0.8.2](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.8.1...hcl-edit-v0.8.2) - 2024-09-25
4+
5+
### Fixed
6+
7+
- *(parser)* allow newlines in function calls and arrays ([#368](https://github.com/martinohmann/hcl-rs/pull/368))
8+
9+
### Other
10+
11+
- address linting issues
12+
313
## [0.8.1](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.8.0...hcl-edit-v0.8.1) - 2024-05-24
414

515
### 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.8.1"
3+
version = "0.8.2"
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.5", path = "../hcl-primitives" }
34+
hcl-primitives = { version = "0.1.6", path = "../hcl-primitives" }
3535
vecmap-rs = "0.2"
3636
winnow = "0.6"
3737

crates/hcl-primitives/CHANGELOG.md

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

3+
## [0.1.6](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.5...hcl-primitives-v0.1.6) - 2024-09-25
4+
5+
### Other
6+
7+
- address linting issues
8+
- *(deps)* bump ryu from 1.0.17 to 1.0.18 ([#358](https://github.com/martinohmann/hcl-rs/pull/358))
9+
- *(deps)* bump kstring from 2.0.0 to 2.0.2 ([#364](https://github.com/martinohmann/hcl-rs/pull/364))
10+
- *(deps)* bump serde from 1.0.197 to 1.0.210 ([#371](https://github.com/martinohmann/hcl-rs/pull/371))
11+
312
## [0.1.5](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.4...hcl-primitives-v0.1.5) - 2024-05-16
413

514
### 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.5"
3+
version = "0.1.6"
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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.18.1](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.18.0...hcl-rs-v0.18.1) - 2024-09-25
4+
5+
### Other
6+
7+
- *(deps)* bump serde from 1.0.197 to 1.0.210 ([#371](https://github.com/martinohmann/hcl-rs/pull/371))
8+
- *(deps)* bump serde_json from 1.0.116 to 1.0.128 ([#370](https://github.com/martinohmann/hcl-rs/pull/370))
9+
310
## [0.18.0](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.17.2...hcl-rs-v0.18.0) - 2024-05-24
411

512
### Fixed

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.18.0"
3+
version = "0.18.1"
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.11"
39-
hcl-edit = { version = "0.8.1", path = "../hcl-edit" }
40-
hcl-primitives = { version = "0.1.5", path = "../hcl-primitives", features = ["serde"] }
39+
hcl-edit = { version = "0.8.2", path = "../hcl-edit" }
40+
hcl-primitives = { version = "0.1.6", path = "../hcl-primitives", features = ["serde"] }
4141
serde = { version = "1.0.210", features = ["derive"] }
4242
vecmap-rs = { version = "0.2", features = ["serde"] }
4343

0 commit comments

Comments
 (0)