From 70eaa76ea3f4bacd67f3027c4a52948485a67d32 Mon Sep 17 00:00:00 2001 From: "Tony Arcieri (iqlusion)" Date: Wed, 9 Oct 2024 13:23:27 -0600 Subject: [PATCH] secrecy v0.10.3 (#1238) --- Cargo.lock | 2 +- secrecy/CHANGELOG.md | 8 ++++++++ secrecy/Cargo.toml | 2 +- secrecy/README.md | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 750e4096..2fb5bf6c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1034,7 +1034,7 @@ dependencies = [ [[package]] name = "secrecy" -version = "0.10.2" +version = "0.10.3" dependencies = [ "serde", "zeroize", diff --git a/secrecy/CHANGELOG.md b/secrecy/CHANGELOG.md index f32a2286..043278ea 100644 --- a/secrecy/CHANGELOG.md +++ b/secrecy/CHANGELOG.md @@ -4,6 +4,14 @@ 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.3 (2024-10-09) +### Added +- Make integer primitive `SecretSlice`s cloneable ([#1236]) +- Impl `From<&str>` for `SecretString` ([#1237]) + +[#1236]: https://github.com/iqlusioninc/crates/pull/1236 +[#1237]: https://github.com/iqlusioninc/crates/pull/1237 + ## 0.10.2 (2024-09-20) ### Added - Impl `Deserialize` for `SecretString` ([#1220]) diff --git a/secrecy/Cargo.toml b/secrecy/Cargo.toml index fb7cc659..f1b60c2e 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.2" +version = "0.10.3" authors = ["Tony Arcieri "] license = "Apache-2.0 OR MIT" homepage = "https://github.com/iqlusioninc/crates/" diff --git a/secrecy/README.md b/secrecy/README.md index 7b9d04d5..490245f1 100644 --- a/secrecy/README.md +++ b/secrecy/README.md @@ -61,7 +61,7 @@ without any additional terms or conditions. [//]: # (badges) -[crate-image]: https://img.shields.io/crates/v/secrecy.svg +[crate-image]: https://img.shields.io/crates/v/secrecy.svg?logo=rust [crate-link]: https://crates.io/crates/secrecy [docs-image]: https://docs.rs/secrecy/badge.svg [docs-link]: https://docs.rs/secrecy/