Skip to content

Commit 870df83

Browse files
chore: release (#342)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 9a46a4c commit 870df83

File tree

7 files changed

+28
-9
lines changed

7 files changed

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

3+
## [0.8.0](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.7.7...hcl-edit-v0.8.0) - 2024-05-16
4+
5+
### Added
6+
- [**breaking**] add support for namespaced functions ([#343](https://github.com/martinohmann/hcl-rs/pull/343))
7+
38
## [0.7.7](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.7.6...hcl-edit-v0.7.7) - 2024-04-13
49

510
### Other

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.7"
3+
version = "0.8.0"
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.4", path = "../hcl-primitives" }
34+
hcl-primitives = { version = "0.1.5", 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.5](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.4...hcl-primitives-v0.1.5) - 2024-05-16
4+
5+
### Other
6+
- *(deps)* bump itoa from 1.0.9 to 1.0.11 ([#337](https://github.com/martinohmann/hcl-rs/pull/337))
7+
38
## [0.1.4](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.3...hcl-primitives-v0.1.4) - 2024-04-13
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.4"
3+
version = "0.1.5"
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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [0.17.0](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.16.9...hcl-rs-v0.17.0) - 2024-05-16
4+
5+
### Added
6+
- [**breaking**] add support for namespaced functions ([#343](https://github.com/martinohmann/hcl-rs/pull/343))
7+
8+
### Other
9+
- *(deps)* bump serde_json from 1.0.112 to 1.0.116 ([#339](https://github.com/martinohmann/hcl-rs/pull/339))
10+
- *(deps)* bump itoa from 1.0.9 to 1.0.11 ([#337](https://github.com/martinohmann/hcl-rs/pull/337))
11+
312
## [0.16.9](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.16.8...hcl-rs-v0.16.9) - 2024-04-13
413

514
### 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.9"
3+
version = "0.17.0"
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.7.7", path = "../hcl-edit" }
40-
hcl-primitives = { version = "0.1.4", path = "../hcl-primitives", features = ["serde"] }
39+
hcl-edit = { version = "0.8.0", path = "../hcl-edit" }
40+
hcl-primitives = { version = "0.1.5", 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)