From 58f3db002d0b62ac37562202121711fb5b450d87 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 4 Jun 2019 16:20:56 -0700 Subject: [PATCH] secrecy v0.2.1 --- Cargo.lock | 2 +- secrecy/CHANGES.md | 8 +++++++- secrecy/Cargo.toml | 2 +- secrecy/src/lib.rs | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4a7737c2..9c7d3994 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -323,7 +323,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "secrecy" -version = "0.2.0" +version = "0.2.1" dependencies = [ "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "zeroize 0.9.0", diff --git a/secrecy/CHANGES.md b/secrecy/CHANGES.md index 29586a77..f42f0a04 100644 --- a/secrecy/CHANGES.md +++ b/secrecy/CHANGES.md @@ -1,3 +1,7 @@ +## [0.2.1] (2019-06-04) + +- `zeroize` v0.9.0 ([#215]) + ## [0.2.0] (2019-05-29) - Add `CloneableSecret` marker trait ([#210]) @@ -6,5 +10,7 @@ - Initial release -[#211]: https://github.com/iqlusioninc/crates/pull/211 +[0.2.1]: https://github.com/iqlusioninc/crates/pull/216 +[#215]: https://github.com/iqlusioninc/crates/pull/215 +[0.2.0]: https://github.com/iqlusioninc/crates/pull/211 [#210]: https://github.com/iqlusioninc/crates/pull/210 diff --git a/secrecy/Cargo.toml b/secrecy/Cargo.toml index 61808e77..c483bc72 100644 --- a/secrecy/Cargo.toml +++ b/secrecy/Cargo.toml @@ -6,7 +6,7 @@ description = """ (as much as possible), and also ensure secrets are securely wiped from memory when dropped. """ -version = "0.2.0" # Also update html_root_url in lib.rs when bumping this +version = "0.2.1" # Also update html_root_url in lib.rs when bumping this authors = ["Tony Arcieri "] license = "Apache-2.0" edition = "2018" diff --git a/secrecy/src/lib.rs b/secrecy/src/lib.rs index 67731cb1..bd116fed 100644 --- a/secrecy/src/lib.rs +++ b/secrecy/src/lib.rs @@ -11,7 +11,7 @@ unused_qualifications )] #![forbid(unsafe_code)] -#![doc(html_root_url = "https://docs.rs/secrecy/0.2.0")] +#![doc(html_root_url = "https://docs.rs/secrecy/0.2.1")] use core::fmt::{self, Debug}; #[cfg(feature = "serde")]