From 2a6e77c522676eafe3758f583c9d5b0dda6b2246 Mon Sep 17 00:00:00 2001 From: Cristiano Piemontese Date: Mon, 20 Nov 2023 14:22:42 +0100 Subject: [PATCH] [PLATFORM-1359]: Release new version with contributed fix (#77) --- CHANGELOG.md | 12 ++++++++++-- Cargo.toml | 4 ++-- README.md | 2 +- veil-macros/Cargo.toml | 2 +- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73ffc7de..c0baa4cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 998cf7a7..1abacfd2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" @@ -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] diff --git a/README.md b/README.md index 4d0c5491..0bb7928f 100644 --- a/README.md +++ b/README.md @@ -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). diff --git a/veil-macros/Cargo.toml b/veil-macros/Cargo.toml index 80482f18..58422e91 100644 --- a/veil-macros/Cargo.toml +++ b/veil-macros/Cargo.toml @@ -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"