Skip to content

Commit

Permalink
zeroize v1.4.3 (#649)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Nov 5, 2021
1 parent 00b569b commit 6ee51e9
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions zeroize/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +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.4.3 (2021-11-04)
### Added
- Implement `Zeroize` for `NonZeroX`

### Changed
- Moved to `RustCrypto/utils` repository

## 1.4.2 (2021-09-21)
### Added
- Derive `Default` on `Zeroizing`
Expand Down
2 changes: 1 addition & 1 deletion zeroize/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.2" # Also update html_root_url in lib.rs when bumping this
version = "1.4.3" # 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"
Expand Down
2 changes: 0 additions & 2 deletions zeroize/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,3 @@ dual licensed as above, without any additional terms or conditions.
[core::ptr::write_volatile]: https://doc.rust-lang.org/core/ptr/fn.write_volatile.html
[core::sync::atomic]: https://doc.rust-lang.org/stable/core/sync/atomic/index.html
[good cryptographic hygiene]: https://github.com/veorq/cryptocoding#clean-memory-of-secret-data
[LICENSE]: https://github.com/RustCrypto/utils/blob/main/LICENSE
[LICENSE-MIT]: https://github.com/RustCrypto/utils/blob/main/zeroize/LICENSE-MIT
4 changes: 1 addition & 3 deletions zeroize/derive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,4 @@ dual licensed as above, without any additional terms or conditions.
[//]: # (general links)

[RustCrypto]: https://github.com/RustCrypto
[zeroize]: https://github.com/RustCrypto/utils/tree/main/zeroize
[LICENSE]: https://github.com/RustCrypto/utils/blob/main/LICENSE
[LICENSE-MIT]: https://github.com/RustCrypto/utils/blob/main/zeroize/LICENSE-MIT
[zeroize]: https://github.com/RustCrypto/utils/tree/master/zeroize
2 changes: 1 addition & 1 deletion zeroize/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@

#![no_std]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(html_root_url = "https://docs.rs/zeroize/1.4.2")]
#![doc(html_root_url = "https://docs.rs/zeroize/1.4.3")]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]

#[cfg(feature = "alloc")]
Expand Down

0 comments on commit 6ee51e9

Please sign in to comment.