Skip to content

Commit

Permalink
secrecy v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-iqlusion committed Oct 14, 2019
1 parent 778360a commit 8882985
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
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.

6 changes: 6 additions & 0 deletions secrecy/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.5.0] (2019-10-13)

- Upgrade to `zeroize` v1.0.0 ([#279])

## [0.4.1] (2019-10-13)

- Upgrade to `zeroize` v1.0.0-pre ([#268])
Expand Down Expand Up @@ -33,6 +37,8 @@

- Initial release

[0.5.0]: https://github.com/iqlusioninc/crates/pull/282
[#279]: https://github.com/iqlusioninc/crates/pull/279
[0.4.1]: https://github.com/iqlusioninc/crates/pull/274
[#268]: https://github.com/iqlusioninc/crates/pull/268
[0.4.0]: https://github.com/iqlusioninc/crates/pull/263
Expand Down
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 @@ they aren't accidentally copied, logged, or otherwise exposed
(as much as possible), and also ensure secrets are securely wiped
from memory when dropped.
"""
version = "0.4.1" # Also update html_root_url in lib.rs when bumping this
version = "0.5.0" # Also update html_root_url in lib.rs when bumping this
authors = ["Tony Arcieri <tony@iqlusion.io>"]
license = "Apache-2.0 OR MIT"
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 @@ -4,7 +4,7 @@
#![no_std]
#![forbid(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
#![doc(html_root_url = "https://docs.rs/secrecy/0.4.1")]
#![doc(html_root_url = "https://docs.rs/secrecy/0.5.0")]

#[cfg(feature = "alloc")]
extern crate alloc;
Expand Down

0 comments on commit 8882985

Please sign in to comment.