Skip to content

Commit b437b43

Browse files
authored
zeroize v1.5.3 (#740)
1 parent 77eb0a2 commit b437b43

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

zeroize/CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## 1.5.2 (2022-01-31)
7+
## 1.5.3 (2022-02-25)
8+
### Fixed
9+
- Deriving `ZeroizeOnDrop` on `DerefMut` ([#739])
10+
11+
[#739]: https://github.com/RustCrypto/utils/pull/739
12+
13+
## 1.5.2 (2022-01-31) [YANKED]
814
### Fixed
915
- Ambiguous method for `AssertZeroizeOnDrop` ([#725])
1016

zeroize/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ operation will not be 'optimized away' by the compiler.
77
Uses a portable pure Rust implementation that works everywhere,
88
even WASM!
99
"""
10-
version = "1.5.2" # Also update html_root_url in lib.rs when bumping this
10+
version = "1.5.3" # Also update html_root_url in lib.rs when bumping this
1111
authors = ["The RustCrypto Project Developers"]
1212
license = "Apache-2.0 OR MIT"
1313
repository = "https://github.com/RustCrypto/utils/tree/master/zeroize"

zeroize/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#![doc(
44
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
55
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
6-
html_root_url = "https://docs.rs/zeroize/1.5.2"
6+
html_root_url = "https://docs.rs/zeroize/1.5.3"
77
)]
88
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
99

0 commit comments

Comments
 (0)