diff --git a/Cargo.lock b/Cargo.lock index 1ee74d2b..64633b16 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1079,7 +1079,7 @@ dependencies = [ [[package]] name = "secrecy" -version = "0.10.0" +version = "0.10.1" dependencies = [ "serde", "zeroize", diff --git a/secrecy/CHANGELOG.md b/secrecy/CHANGELOG.md index 793d6dbe..2e493681 100644 --- a/secrecy/CHANGELOG.md +++ b/secrecy/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.10.1 (2024-09-18) +### Added +- Impl `Clone` for `SecretString` ([#1217]) + +[#1217]: https://github.com/iqlusioninc/crates/pull/1217 + ## 0.10.0 (2024-09-17) This release represents a significant redesign of the `secrecy` crate. We will update this section diff --git a/secrecy/Cargo.toml b/secrecy/Cargo.toml index f080329a..6220ebdd 100644 --- a/secrecy/Cargo.toml +++ b/secrecy/Cargo.toml @@ -6,7 +6,7 @@ they aren't accidentally copied, logged, or otherwise exposed (as much as possible), and also ensure secrets are securely wiped from memory when dropped. """ -version = "0.10.0" +version = "0.10.1" authors = ["Tony Arcieri "] license = "Apache-2.0 OR MIT" homepage = "https://github.com/iqlusioninc/crates/"