Skip to content

Commit 7860fbb

Browse files
Merge pull request #220 from iqlusioninc/zeroize/v0.9.1
zeroize v0.9.1
2 parents 2750e74 + 73f5238 commit 7860fbb

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

Cargo.lock

Lines changed: 3 additions & 3 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.1] (2019-06-04)
2+
3+
- Impl `Zeroize` for `Option<Z: Zeroize>` ([#219])
4+
15
## [0.9.0] (2019-06-04)
26

37
**NOTICE**: This release changes the default behavior of `derive(Zeroize)`
@@ -78,6 +82,8 @@ a pure Rust solution.
7882

7983
- Initial release
8084

85+
[0.9.1]: https://github.com/iqlusioninc/crates/pull/220
86+
[#219]: https://github.com/iqlusioninc/crates/pull/219
8187
[0.9.0]: https://github.com/iqlusioninc/crates/pull/215
8288
[#216]: https://github.com/iqlusioninc/crates/pull/216
8389
[#214]: https://github.com/iqlusioninc/crates/pull/214

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.0" # Also update html_root_url in lib.rs when bumping this
10+
version = "0.9.1" # 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
@@ -204,7 +204,7 @@
204204
unused_import_braces,
205205
unused_qualifications
206206
)]
207-
#![doc(html_root_url = "https://docs.rs/zeroize/0.9.0")]
207+
#![doc(html_root_url = "https://docs.rs/zeroize/0.9.1")]
208208

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

0 commit comments

Comments
 (0)