diff --git a/Cargo.lock b/Cargo.lock index 0f9c3a78..50b2e1bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -185,7 +185,7 @@ dependencies = [ [[package]] name = "zeroize" -version = "1.5.1" +version = "1.5.2" dependencies = [ "zeroize_derive", ] diff --git a/zeroize/CHANGELOG.md b/zeroize/CHANGELOG.md index a2e74259..d25f91a1 100644 --- a/zeroize/CHANGELOG.md +++ b/zeroize/CHANGELOG.md @@ -4,7 +4,13 @@ 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). -## 1.5.1 (2022-01-27) +## 1.5.2 (2022-01-31) +### Fixed +- Ambiguous method for `AssertZeroizeOnDrop` ([#725]) + +[#725]: https://github.com/RustCrypto/utils/pull/725 + +## 1.5.1 (2022-01-27) [YANKED] ### Fixed - Double `mut` on `AssertZeroizeOnDrop` ([#719]) diff --git a/zeroize/Cargo.toml b/zeroize/Cargo.toml index 19f4971e..afb69031 100644 --- a/zeroize/Cargo.toml +++ b/zeroize/Cargo.toml @@ -7,7 +7,7 @@ operation will not be 'optimized away' by the compiler. Uses a portable pure Rust implementation that works everywhere, even WASM! """ -version = "1.5.1" # Also update html_root_url in lib.rs when bumping this +version = "1.5.2" # Also update html_root_url in lib.rs when bumping this authors = ["The RustCrypto Project Developers"] license = "Apache-2.0 OR MIT" repository = "https://github.com/RustCrypto/utils/tree/master/zeroize" diff --git a/zeroize/src/lib.rs b/zeroize/src/lib.rs index 3f1fd1f9..1b11ddc5 100644 --- a/zeroize/src/lib.rs +++ b/zeroize/src/lib.rs @@ -3,7 +3,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/zeroize/1.5.1" + html_root_url = "https://docs.rs/zeroize/1.5.2" )] #![warn(missing_docs, rust_2018_idioms, unused_qualifications)]