Skip to content

Commit 6f5590a

Browse files
Merge pull request #248 from iqlusioninc/zeroize/v0.10.0
zeroize v0.10.0
2 parents c4c3af3 + b710553 commit 6f5590a

File tree

8 files changed

+36
-18
lines changed

8 files changed

+36
-18
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hkd32/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ subtle-encoding = { version = "0.3", optional = true }
2828
tiny-bip39 = { version = "0.6", default-features = false, optional = true }
2929

3030
[dependencies.zeroize]
31-
version = "0.9"
31+
version = "0.10"
3232
path = "../zeroize"
3333
default-features = false
3434
features = ["zeroize_derive"]

secrecy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ travis-ci = { repository = "iqlusioninc/crates", branch = "develop" }
2121

2222
[dependencies]
2323
serde = { version = "1", optional = true }
24-
zeroize = { version = "0.9", path = "../zeroize", default-features = false }
24+
zeroize = { version = "0.10", path = "../zeroize", default-features = false }

subtle-encoding/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,11 @@ readme = "README.md"
1616
categories = ["cryptography", "encoding", "no-std"]
1717
keywords = ["base64", "bech32", "constant-time", "hex", "security"]
1818

19-
[dependencies]
20-
zeroize = { version = "0.9", default-features = false, optional = true, path = "../zeroize" }
19+
[dependencies.zeroize]
20+
version = "0.10"
21+
optional = true
22+
default-features = false
23+
path = "../zeroize"
2124

2225
[features]
2326
default = ["base64", "hex", "std"]

zeroize/CHANGES.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1+
## [0.10.0] (2019-08-19)
2+
3+
Barring unforeseen circumstances, this release aims to be the last `0.x`
4+
release prior to a `zeroize` 1.0 release.
5+
6+
- Disable `zeroize_derive` Cargo feature by default ([#247])
7+
- Remove `std` feature in favor of `alloc`; MSRV 1.36+ ([#246])
8+
- Deprecate `#[zeroize(no_drop)]` attribute ([#244])
9+
- Use 1.0 `proc-macro2`, `quote`, and `syn` crates ([#242])
10+
111
## [0.9.3] (2019-07-27)
212

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

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

@@ -90,6 +100,11 @@ a pure Rust solution.
90100

91101
- Initial release
92102

103+
[0.10.0]: https://github.com/iqlusioninc/crates/pull/248
104+
[#247]: https://github.com/iqlusioninc/crates/pull/247
105+
[#246]: https://github.com/iqlusioninc/crates/pull/246
106+
[#244]: https://github.com/iqlusioninc/crates/pull/244
107+
[#242]: https://github.com/iqlusioninc/crates/pull/242
93108
[0.9.3]: https://github.com/iqlusioninc/crates/pull/239
94109
[#238]: https://github.com/iqlusioninc/crates/pull/238
95110
[0.9.2]: https://github.com/iqlusioninc/crates/pull/224

zeroize/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = """
77
Uses a portable pure Rust implementation that works everywhere,
88
even WASM!
99
"""
10-
version = "0.9.3" # Also update html_root_url in lib.rs when bumping this
10+
version = "0.10.0" # Also update html_root_url in lib.rs when bumping this
1111
authors = ["Tony Arcieri <tony@iqlusion.io>"]
1212
license = "Apache-2.0 OR MIT"
1313
edition = "2018"
@@ -21,7 +21,7 @@ keywords = ["memory", "memset", "secure", "volatile", "zero"]
2121
travis-ci = { repository = "iqlusioninc/crates", branch = "develop" }
2222

2323
[dependencies]
24-
zeroize_derive = { version = "0.9", path = "../zeroize_derive", optional = true }
24+
zeroize_derive = { version = "0.10", path = "../zeroize_derive", optional = true }
2525

2626
[features]
2727
default = ["alloc"]

zeroize/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
195195
#![no_std]
196196
#![deny(warnings, missing_docs, trivial_casts, unused_qualifications)]
197-
#![doc(html_root_url = "https://docs.rs/zeroize/0.9.3")]
197+
#![doc(html_root_url = "https://docs.rs/zeroize/0.10.0")]
198198

199199
#[cfg(feature = "alloc")]
200200
#[cfg_attr(test, macro_use)]

zeroize_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "zeroize_derive"
33
description = "Custom derive support for zeroize"
4-
version = "0.9.3"
4+
version = "0.10.0"
55
authors = ["Tony Arcieri <tony@iqlusion.io>"]
66
license = "Apache-2.0 OR MIT"
77
edition = "2018"

0 commit comments

Comments
 (0)