Skip to content

Commit 7c931b8

Browse files
authored
zeroize v1.5.4 (#750)
1 parent c717b30 commit 7c931b8

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-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

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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.4 (2022-03-16)
8+
### Added
9+
- Nightly-only upport for zeroizing ARM64 SIMD registers ([#749])
10+
11+
[#749]: https://github.com/RustCrypto/utils/pull/749
12+
713
## 1.5.3 (2022-02-25)
814
### Fixed
915
- Deriving `ZeroizeOnDrop` on `DerefMut` ([#739])

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.3" # Also update html_root_url in lib.rs when bumping this
10+
version = "1.5.4"
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-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
#![cfg_attr(docsrs, feature(doc_cfg))]
33
#![doc(
44
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
5-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
6-
html_root_url = "https://docs.rs/zeroize/1.5.3"
5+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
76
)]
87
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
98

0 commit comments

Comments
 (0)