Skip to content

Commit ae8d541

Browse files
committed
secrecy v0.2.2
1 parent 9a072f3 commit ae8d541

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

secrecy/CHANGES.md

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

37
- `zeroize` v0.9.0 ([#215])
@@ -10,6 +14,8 @@
1014

1115
- Initial release
1216

17+
[0.2.2]: https://github.com/iqlusioninc/crates/pull/222
18+
[#221]: https://github.com/iqlusioninc/crates/pull/221
1319
[0.2.1]: https://github.com/iqlusioninc/crates/pull/216
1420
[#215]: https://github.com/iqlusioninc/crates/pull/215
1521
[0.2.0]: https://github.com/iqlusioninc/crates/pull/211

secrecy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = """
66
(as much as possible), and also ensure secrets are securely wiped
77
from memory when dropped.
88
"""
9-
version = "0.2.1" # Also update html_root_url in lib.rs when bumping this
9+
version = "0.2.2" # Also update html_root_url in lib.rs when bumping this
1010
authors = ["Tony Arcieri <[email protected]>"]
1111
license = "Apache-2.0"
1212
edition = "2018"

secrecy/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@
77
missing_docs,
88
trivial_casts,
99
trivial_numeric_casts,
10-
unused_import_braces,
1110
unused_qualifications
1211
)]
1312
#![forbid(unsafe_code)]
14-
#![doc(html_root_url = "https://docs.rs/secrecy/0.2.1")]
13+
#![doc(html_root_url = "https://docs.rs/secrecy/0.2.2")]
1514

1615
use core::fmt::{self, Debug};
1716
#[cfg(feature = "serde")]

0 commit comments

Comments
 (0)