Skip to content

Commit 1121927

Browse files
chore: release (#331)
* chore: release Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * chore: adjust release notes --------- 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> Co-authored-by: martinohmann <martinohmann@gmail.com>
1 parent 80a0d2e commit 1121927

File tree

7 files changed

+26
-39
lines changed

7 files changed

+26
-39
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: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Changelog
22

3-
* The following workspace dependencies were updated
4-
* dependencies
5-
* hcl-primitives bumped from 0.1.1 to 0.1.2
3+
## [0.7.6](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.7.5...hcl-edit-v0.7.6) - 2024-04-08
4+
5+
### Fixed
6+
- *(parser)* allow newlines in parenthesis expressions ([#330](https://github.com/martinohmann/hcl-rs/pull/330))
7+
8+
### Other
9+
- update winnow to 0.6+ and vecmap-rs to 0.2+ ([#324](https://github.com/martinohmann/hcl-rs/pull/324))
610

711
## [0.7.4](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.7.3...hcl-edit-v0.7.4) (2023-09-27)
812

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.5"
3+
version = "0.7.6"
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.2", path = "../hcl-primitives" }
34+
hcl-primitives = { version = "0.1.3", 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.3](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.2...hcl-primitives-v0.1.3) - 2024-04-08
4+
5+
### Other
6+
- *(deps)* bump ryu from 1.0.15 to 1.0.17 ([#325](https://github.com/martinohmann/hcl-rs/pull/325))
7+
38
## [0.1.2](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.1...hcl-primitives-v0.1.2) (2024-01-04)
49

510

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.2"
3+
version = "0.1.3"
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 & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,11 @@
11
# Changelog
22

3-
* The following workspace dependencies were updated
4-
* dependencies
5-
* hcl-primitives bumped from 0.0.2 to 0.0.3
6-
7-
* The following workspace dependencies were updated
8-
* dependencies
9-
* hcl-edit bumped from 0.6.6 to 0.6.7
3+
## [0.16.8](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.16.7...hcl-rs-v0.16.8) - 2024-04-08
104

11-
* The following workspace dependencies were updated
12-
* dependencies
13-
* hcl-edit bumped from 0.7.0 to 0.7.1
14-
15-
* The following workspace dependencies were updated
16-
* dependencies
17-
* hcl-edit bumped from 0.7.1 to 0.7.2
18-
19-
* The following workspace dependencies were updated
20-
* dependencies
21-
* hcl-edit bumped from 0.7.2 to 0.7.3
22-
23-
* The following workspace dependencies were updated
24-
* dependencies
25-
* hcl-edit bumped from 0.7.3 to 0.7.4
26-
27-
* The following workspace dependencies were updated
28-
* dependencies
29-
* hcl-edit bumped from 0.7.4 to 0.7.5
30-
* hcl-primitives bumped from 0.1.1 to 0.1.2
5+
### Other
6+
- update winnow to 0.6+ and vecmap-rs to 0.2+ ([#324](https://github.com/martinohmann/hcl-rs/pull/324))
7+
- *(deps)* bump serde_json from 1.0.107 to 1.0.112 ([#328](https://github.com/martinohmann/hcl-rs/pull/328))
8+
- *(deps)* bump indexmap from 2.0.2 to 2.2.6 ([#329](https://github.com/martinohmann/hcl-rs/pull/329))
319

3210
## [0.16.5](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.16.4...hcl-rs-v0.16.5) (2023-09-17)
3311

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.7"
3+
version = "0.16.8"
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.5", path = "../hcl-edit" }
40-
hcl-primitives = { version = "0.1.2", path = "../hcl-primitives", features = ["serde"] }
39+
hcl-edit = { version = "0.7.6", path = "../hcl-edit" }
40+
hcl-primitives = { version = "0.1.3", 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)