Skip to content

Commit 225ff42

Browse files
Merge pull request #211 from iqlusioninc/secrecy/v0.2.0
secrecy v0.2.0
2 parents 0c21992 + ba29328 commit 225ff42

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## [0.2.0] (2019-05-29)
2+
3+
- Add `CloneableSecret` marker trait ([#210])
4+
5+
## 0.1.0 (2019-05-23)
6+
7+
- Initial release
8+
9+
[#211]: https://github.com/iqlusioninc/crates/pull/211
10+
[#210]: https://github.com/iqlusioninc/crates/pull/210

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.1.0" # Also update html_root_url in lib.rs when bumping this
9+
version = "0.2.0" # 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
unused_qualifications
1212
)]
1313
#![forbid(unsafe_code)]
14-
#![doc(html_root_url = "https://docs.rs/secrecy/0.1.0")]
14+
#![doc(html_root_url = "https://docs.rs/secrecy/0.2.0")]
1515

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

0 commit comments

Comments
 (0)