Skip to content

Commit

Permalink
chore: release (#354)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored May 24, 2024
1 parent 8f32f31 commit c62bff9
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

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

## [0.8.1](https://github.com/martinohmann/hcl-rs/compare/hcl-edit-v0.8.0...hcl-edit-v0.8.1) - 2024-05-24

### Fixed
- *(parser)* calculate correct error column in presence of unicode ([#353](https://github.com/martinohmann/hcl-rs/pull/353))
- *(parser)* switch from `&[u8]` to `&str` based stream ([#351](https://github.com/martinohmann/hcl-rs/pull/351))

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

### Added
Expand Down
2 changes: 1 addition & 1 deletion 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.8.0"
version = "0.8.1"
authors = ["Martin Ohmann <martinohmann@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Parse and modify HCL while preserving comments and whitespace"
Expand Down
5 changes: 5 additions & 0 deletions crates/hcl-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.18.0](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.17.2...hcl-rs-v0.18.0) - 2024-05-24

### Fixed
- [**breaking**] remove deprecated items ([#355](https://github.com/martinohmann/hcl-rs/pull/355))

## [0.17.2](https://github.com/martinohmann/hcl-rs/compare/hcl-rs-v0.17.1...hcl-rs-v0.17.2) - 2024-05-21

### Added
Expand Down
4 changes: 2 additions & 2 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.17.2"
version = "0.18.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,7 +36,7 @@ perf = ["hcl-edit/perf", "hcl-primitives/perf"]
[dependencies]
indexmap = { version = "2.2.6", features = ["serde"] }
itoa = "1.0.11"
hcl-edit = { version = "0.8.0", path = "../hcl-edit" }
hcl-edit = { version = "0.8.1", 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

0 comments on commit c62bff9

Please sign in to comment.