Skip to content

Commit 88a669c

Browse files
Merge pull request #224 from iqlusioninc/zeroize/v0.9.2
zeroize v0.9.2
2 parents 2b735bf + b1b0180 commit 88a669c

File tree

6 files changed

+15
-22
lines changed

6 files changed

+15
-22
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.

secrecy/CHANGES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## [0.2.2] (2019-06-28)
22

3-
- README: add Gitter badges; update image links ([#221])
3+
- README.md: add Gitter badges; update image links ([#221])
44

55
## [0.2.1] (2019-06-04)
66

@@ -14,7 +14,7 @@
1414

1515
- Initial release
1616

17-
[0.2.2]: https://github.com/iqlusioninc/crates/pull/222
17+
[0.2.2]: https://github.com/iqlusioninc/crates/pull/223
1818
[#221]: https://github.com/iqlusioninc/crates/pull/221
1919
[0.2.1]: https://github.com/iqlusioninc/crates/pull/216
2020
[#215]: https://github.com/iqlusioninc/crates/pull/215

secrecy/src/lib.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,7 @@
22
//! (e.g. passwords, cryptographic keys, access tokens or other credentials)
33
44
#![no_std]
5-
#![deny(
6-
warnings,
7-
missing_docs,
8-
trivial_casts,
9-
trivial_numeric_casts,
10-
unused_qualifications
11-
)]
5+
#![deny(warnings, missing_docs, trivial_casts, unused_qualifications)]
126
#![forbid(unsafe_code)]
137
#![doc(html_root_url = "https://docs.rs/secrecy/0.2.2")]
148

zeroize/CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [0.9.2] (2019-06-28)
2+
3+
- README.md: add Gitter badges; update image links ([#221])
4+
15
## [0.9.1] (2019-06-04)
26

37
- Impl `Zeroize` for `Option<Z: Zeroize>` ([#219])
@@ -82,6 +86,8 @@ a pure Rust solution.
8286

8387
- Initial release
8488

89+
[0.9.2]: https://github.com/iqlusioninc/crates/pull/224
90+
[#221]: https://github.com/iqlusioninc/crates/pull/221
8591
[0.9.1]: https://github.com/iqlusioninc/crates/pull/220
8692
[#219]: https://github.com/iqlusioninc/crates/pull/219
8793
[0.9.0]: https://github.com/iqlusioninc/crates/pull/215

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.1" # Also update html_root_url in lib.rs when bumping this
10+
version = "0.9.2" # 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: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -196,15 +196,8 @@
196196
//! [good cryptographic hygiene]: https://cryptocoding.net/index.php/Coding_rules#Clean_memory_of_secret_data
197197
198198
#![no_std]
199-
#![deny(
200-
warnings,
201-
missing_docs,
202-
trivial_casts,
203-
trivial_numeric_casts,
204-
unused_import_braces,
205-
unused_qualifications
206-
)]
207-
#![doc(html_root_url = "https://docs.rs/zeroize/0.9.1")]
199+
#![deny(warnings, missing_docs, trivial_casts, unused_qualifications)]
200+
#![doc(html_root_url = "https://docs.rs/zeroize/0.9.2")]
208201

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

0 commit comments

Comments
 (0)