Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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 <[email protected]>"]
license = "Apache-2.0"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion secrecy/src/lib.rs
Original file line number Diff line number Diff line change
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