Skip to content

Commit a37fa8d

Browse files
authored
zeroize v1.5.1 (#721)
1 parent c261a1e commit a37fa8d

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

zeroize/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
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.0 (2022-01-14)
7+
## 1.5.1 (2022-01-27)
8+
### Fixed
9+
- Double `mut` on `AssertZeroizeOnDrop` ([#719])
10+
11+
[#719]: https://github.com/RustCrypto/utils/pull/719
12+
13+
## 1.5.0 (2022-01-14) [YANKED]
814
### Added
915
- `Zeroize` impls for `PhantomData`, `PhantomPinned`, and tuples with 0-10 elements ([#660])
1016
- `#[zeroize(bound = "T: MyTrait")]` ([#663])

zeroize/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.0" # Also update html_root_url in lib.rs when bumping this
10+
version = "1.5.1" # 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

Lines changed: 1 addition & 1 deletion
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.0"
6+
html_root_url = "https://docs.rs/zeroize/1.5.1"
77
)]
88
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
99

0 commit comments

Comments
 (0)