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"