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 #342

Merged
merged 1 commit into from
May 16, 2024
Merged
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
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions crates/hcl-edit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.8.0](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.7.7...hcl-edit-v0.8.0) - 2024-05-16

### Added
- [**breaking**] add support for namespaced functions ([#343](https://github.com/martinohmann/hcl-rs/pull/343))

## [0.7.7](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.7.6...hcl-edit-v0.7.7) - 2024-04-13

### 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.7.7"
version = "0.8.0"
authors = ["Martin Ohmann <martinohmann@gmail.com>"]
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.4", path = "../hcl-primitives" }
hcl-primitives = { version = "0.1.5", path = "../hcl-primitives" }
vecmap-rs = "0.2"
winnow = "0.6"

Expand Down
5 changes: 5 additions & 0 deletions crates/hcl-primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.1.5](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.4...hcl-primitives-v0.1.5) - 2024-05-16

### Other
- *(deps)* bump itoa from 1.0.9 to 1.0.11 ([#337](https://github.com/martinohmann/hcl-rs/pull/337))

## [0.1.4](https://github.com/martinohmann/hcl-rs/compare/hcl-primitives-v0.1.3...hcl-primitives-v0.1.4) - 2024-04-13

### 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.4"
version = "0.1.5"
authors = ["Martin Ohmann <martinohmann@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Primitives used by the HCL sub-languages"
Expand Down
9 changes: 9 additions & 0 deletions crates/hcl-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.17.0](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.16.9...hcl-rs-v0.17.0) - 2024-05-16

### Added
- [**breaking**] add support for namespaced functions ([#343](https://github.com/martinohmann/hcl-rs/pull/343))

### Other
- *(deps)* bump serde_json from 1.0.112 to 1.0.116 ([#339](https://github.com/martinohmann/hcl-rs/pull/339))
- *(deps)* bump itoa from 1.0.9 to 1.0.11 ([#337](https://github.com/martinohmann/hcl-rs/pull/337))

## [0.16.9](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.16.8...hcl-rs-v0.16.9) - 2024-04-13

### 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.16.9"
version = "0.17.0"
authors = ["Martin Ohmann <martinohmann@gmail.com>"]
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.2.6", features = ["serde"] }
itoa = "1.0.11"
hcl-edit = { version = "0.7.7", path = "../hcl-edit" }
hcl-primitives = { version = "0.1.4", path = "../hcl-primitives", features = ["serde"] }
hcl-edit = { version = "0.8.0", path = "../hcl-edit" }
hcl-primitives = { version = "0.1.5", path = "../hcl-primitives", features = ["serde"] }
serde = { version = "1.0.188", features = ["derive"] }
vecmap-rs = { version = "0.2", features = ["serde"] }

Expand Down