Skip to content

Commit 6a23eaa

Browse files
Merge pull request #252 from iqlusioninc/hkd32/v0.2.0
hkd32 v0.2.0
2 parents a3ac69f + a0288ec commit 6a23eaa

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hkd32/CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [0.2.0] (2019-08-20)
2+
3+
- Vendor (simplified) BIP39 implementation from `tiny-bip39` ([#251])
4+
- `subtle-encoding` v0.4.0 ([#249])
5+
- `zeroize` v0.10.0 ([#248])
6+
17
## [0.1.2] (2019-07-23)
28

39
- Fix docs typo ([#235])
@@ -10,6 +16,10 @@
1016

1117
- Initial release
1218

19+
[0.2.0]: https://github.com/iqlusioninc/crates/pull/252
20+
[#249]: https://github.com/iqlusioninc/crates/pull/251
21+
[#249]: https://github.com/iqlusioninc/crates/pull/249
22+
[#248]: https://github.com/iqlusioninc/crates/pull/248
1323
[0.1.2]: https://github.com/iqlusioninc/crates/pull/236
1424
[#235]: https://github.com/iqlusioninc/crates/pull/235
1525
[0.1.1]: https://github.com/iqlusioninc/crates/pull/233

hkd32/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ description = """
44
HMAC-based Hierarchical Key Derivation: deterministically derive
55
a hierarchy of symmetric keys from initial keying material through
66
repeated applications of the Hash-based Message Authentication Code
7-
(HMAC) construction.
7+
(HMAC) construction. Optionally supports storing root derivation
8+
passwords as a 24-word mnemonic phrase (i.e. BIP39).
89
"""
9-
version = "0.1.2" # Also update html_root_url in lib.rs when bumping this
10+
version = "0.2.0" # Also update html_root_url in lib.rs when bumping this
1011
authors = ["Tony Arcieri <tony@iqlusion.io>"]
1112
license = "Apache-2.0"
1213
edition = "2018"

hkd32/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
3939
#![no_std]
4040
#![deny(warnings, missing_docs, unused_qualifications, unsafe_code)]
41-
#![doc(html_root_url = "https://docs.rs/hkd32/0.1.2")]
41+
#![doc(html_root_url = "https://docs.rs/hkd32/0.2.0")]
4242

4343
#[cfg(feature = "alloc")]
4444
#[cfg_attr(any(feature = "mnemonic", test), macro_use)]

0 commit comments

Comments
 (0)