Skip to content

Commit

Permalink
[PLATFORM-1359]: Release new version with contributed fix (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpiemontese committed Nov 20, 2023
1 parent 91ee015 commit 2a6e77c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [0.1.7] - 2023-11-20

### Changed

- Fix redaction of options (#75) thanks to @nick-schafhauser

---

## [0.1.6] - 2023-05-04

### Changed

- Updated to syn v2


[Unreleased]: https://github.com/primait/veil/compare/0.1.6...HEAD
[Unreleased]: https://github.com/primait/veil/compare/0.1.7...HEAD
[0.1.7]: https://github.com/primait/veil/compare/0.1.6...0.1.7
[0.1.6]: https://github.com/primait/veil/compare/0.1.5...0.1.6
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veil"
version = "0.1.6"
version = "0.1.7"
edition = "2021"
description = "Rust derive macro for redacting sensitive data in `std::fmt::Debug`"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -28,7 +28,7 @@ name = "disable_redaction"
required-features = ["toggle"]

[dependencies]
veil-macros = { path = "veil-macros", version = "=0.1.6" }
veil-macros = { path = "veil-macros", version = "=0.1.7" }
once_cell = "1"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Add to your Cargo.toml:

```toml
[dependencies]
veil = "0.1.6"
veil = "0.1.7"
```

Usage documentation can be found [here](https://docs.rs/veil).
Expand Down
2 changes: 1 addition & 1 deletion veil-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veil-macros"
version = "0.1.6"
version = "0.1.7"
edition = "2021"
description = "Veil procedural macros"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 2a6e77c

Please sign in to comment.