From a2837b2c8031a5c7d9f1d707ef4dc32fde2c6560 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 09:34:37 +0000 Subject: [PATCH] chore: release Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ddbd94d..ecdda5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.10](https://github.com/eopb/redact/compare/v0.1.9...v0.1.10) - 2024-05-11 + +### New features +- Implemented `SerializableSecret` for `&Secret` + This enables `&Secret` to be `Serialized` with `redact::serde::expose_secret` + and `redact::serde::redact_secret`. + +### Other +- Fix issue where dependency versions were not being repeated in dev-dependencies +- Minor documentation improvements + ## [0.1.9](https://github.com/eopb/redact/compare/v0.1.8...v0.1.9) - 2024-03-24 ### New features diff --git a/Cargo.toml b/Cargo.toml index 640a0ee..47a09ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redact" -version = "0.1.9" +version = "0.1.10" authors = ["Ethan Brierley "] license = "MIT/Apache-2.0" readme = "README.md"