Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

secrecy v0.2.1 #217

Merged
merged 1 commit into from Jun 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion secrecy/CHANGES.md
@@ -1,3 +1,7 @@
## [0.2.1] (2019-06-04)

- `zeroize` v0.9.0 ([#215])

## [0.2.0] (2019-05-29)

- Add `CloneableSecret` marker trait ([#210])
Expand All @@ -6,5 +10,7 @@

- Initial release

[#211]: https://github.com/iqlusioninc/crates/pull/211
[0.2.1]: https://github.com/iqlusioninc/crates/pull/216
[#215]: https://github.com/iqlusioninc/crates/pull/215
[0.2.0]: https://github.com/iqlusioninc/crates/pull/211
[#210]: https://github.com/iqlusioninc/crates/pull/210
2 changes: 1 addition & 1 deletion secrecy/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ description = """
(as much as possible), and also ensure secrets are securely wiped
from memory when dropped.
"""
version = "0.2.0" # Also update html_root_url in lib.rs when bumping this
version = "0.2.1" # Also update html_root_url in lib.rs when bumping this
authors = ["Tony Arcieri <tony@iqlusion.io>"]
license = "Apache-2.0"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion secrecy/src/lib.rs
Expand Up @@ -11,7 +11,7 @@
unused_qualifications
)]
#![forbid(unsafe_code)]
#![doc(html_root_url = "https://docs.rs/secrecy/0.2.0")]
#![doc(html_root_url = "https://docs.rs/secrecy/0.2.1")]

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