Skip to content

Commit

Permalink
Merge pull request #248 from iqlusioninc/zeroize/v0.10.0
Browse files Browse the repository at this point in the history
zeroize v0.10.0
  • Loading branch information
tony-iqlusion committed Aug 20, 2019
2 parents c4c3af3 + b710553 commit 6f5590a
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 18 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion hkd32/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ subtle-encoding = { version = "0.3", optional = true }
tiny-bip39 = { version = "0.6", default-features = false, optional = true }

[dependencies.zeroize]
version = "0.9"
version = "0.10"
path = "../zeroize"
default-features = false
features = ["zeroize_derive"]
Expand Down
2 changes: 1 addition & 1 deletion secrecy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ travis-ci = { repository = "iqlusioninc/crates", branch = "develop" }

[dependencies]
serde = { version = "1", optional = true }
zeroize = { version = "0.9", path = "../zeroize", default-features = false }
zeroize = { version = "0.10", path = "../zeroize", default-features = false }
7 changes: 5 additions & 2 deletions subtle-encoding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ readme = "README.md"
categories = ["cryptography", "encoding", "no-std"]
keywords = ["base64", "bech32", "constant-time", "hex", "security"]

[dependencies]
zeroize = { version = "0.9", default-features = false, optional = true, path = "../zeroize" }
[dependencies.zeroize]
version = "0.10"
optional = true
default-features = false
path = "../zeroize"

[features]
default = ["base64", "hex", "std"]
Expand Down
17 changes: 16 additions & 1 deletion zeroize/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
## [0.10.0] (2019-08-19)

Barring unforeseen circumstances, this release aims to be the last `0.x`
release prior to a `zeroize` 1.0 release.

- Disable `zeroize_derive` Cargo feature by default ([#247])
- Remove `std` feature in favor of `alloc`; MSRV 1.36+ ([#246])
- Deprecate `#[zeroize(no_drop)]` attribute ([#244])
- Use 1.0 `proc-macro2`, `quote`, and `syn` crates ([#242])

## [0.9.3] (2019-07-27)

- zeroize: Improved attribute parser; fixes nightly build ([#238])
- Improved attribute parser; fixes nightly build ([#238])

## [0.9.2] (2019-06-28)

Expand Down Expand Up @@ -90,6 +100,11 @@ a pure Rust solution.

- Initial release

[0.10.0]: https://github.com/iqlusioninc/crates/pull/248
[#247]: https://github.com/iqlusioninc/crates/pull/247
[#246]: https://github.com/iqlusioninc/crates/pull/246
[#244]: https://github.com/iqlusioninc/crates/pull/244
[#242]: https://github.com/iqlusioninc/crates/pull/242
[0.9.3]: https://github.com/iqlusioninc/crates/pull/239
[#238]: https://github.com/iqlusioninc/crates/pull/238
[0.9.2]: https://github.com/iqlusioninc/crates/pull/224
Expand Down
4 changes: 2 additions & 2 deletions zeroize/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = """
Uses a portable pure Rust implementation that works everywhere,
even WASM!
"""
version = "0.9.3" # Also update html_root_url in lib.rs when bumping this
version = "0.10.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 All @@ -21,7 +21,7 @@ keywords = ["memory", "memset", "secure", "volatile", "zero"]
travis-ci = { repository = "iqlusioninc/crates", branch = "develop" }

[dependencies]
zeroize_derive = { version = "0.9", path = "../zeroize_derive", optional = true }
zeroize_derive = { version = "0.10", path = "../zeroize_derive", optional = true }

[features]
default = ["alloc"]
Expand Down
2 changes: 1 addition & 1 deletion zeroize/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@

#![no_std]
#![deny(warnings, missing_docs, trivial_casts, unused_qualifications)]
#![doc(html_root_url = "https://docs.rs/zeroize/0.9.3")]
#![doc(html_root_url = "https://docs.rs/zeroize/0.10.0")]

#[cfg(feature = "alloc")]
#[cfg_attr(test, macro_use)]
Expand Down
2 changes: 1 addition & 1 deletion zeroize_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zeroize_derive"
description = "Custom derive support for zeroize"
version = "0.9.3"
version = "0.10.0"
authors = ["Tony Arcieri <tony@iqlusion.io>"]
license = "Apache-2.0 OR MIT"
edition = "2018"
Expand Down

0 comments on commit 6f5590a

Please sign in to comment.