Skip to content

Commit 9ae176b

Browse files
committed
zeroize v0.9.3
1 parent 9af5365 commit 9ae176b

File tree

5 files changed

+18
-12
lines changed

5 files changed

+18
-12
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

zeroize/CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [0.9.3] (2019-07-27)
2+
3+
- zeroize: Improved attribute parser; fixes nightly build ([#238])
4+
15
## [0.9.2] (2019-06-28)
26

37
- README.md: add Gitter badges; update image links ([#221])
@@ -86,6 +90,8 @@ a pure Rust solution.
8690

8791
- Initial release
8892

93+
[0.9.3]: https://github.com/iqlusioninc/crates/pull/239
94+
[#238]: https://github.com/iqlusioninc/crates/pull/238
8995
[0.9.2]: https://github.com/iqlusioninc/crates/pull/224
9096
[#221]: https://github.com/iqlusioninc/crates/pull/221
9197
[0.9.1]: https://github.com/iqlusioninc/crates/pull/220

zeroize/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = """
77
Uses a portable pure Rust implementation that works everywhere,
88
even WASM!
99
"""
10-
version = "0.9.2" # Also update html_root_url in lib.rs when bumping this
10+
version = "0.9.3" # Also update html_root_url in lib.rs when bumping this
1111
authors = ["Tony Arcieri <[email protected]>"]
1212
license = "Apache-2.0 OR MIT"
1313
edition = "2018"

zeroize/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192
193193
#![no_std]
194194
#![deny(warnings, missing_docs, trivial_casts, unused_qualifications)]
195-
#![doc(html_root_url = "https://docs.rs/zeroize/0.9.2")]
195+
#![doc(html_root_url = "https://docs.rs/zeroize/0.9.3")]
196196

197197
#[cfg(all(feature = "alloc", not(feature = "std")))]
198198
#[allow(unused_imports)] // rustc bug?

zeroize_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "zeroize_derive"
33
description = "Custom derive support for zeroize"
4-
version = "0.9.0"
4+
version = "0.9.3"
55
authors = ["Tony Arcieri <[email protected]>"]
66
license = "Apache-2.0 OR MIT"
77
edition = "2018"

0 commit comments

Comments
 (0)