Skip to content

Commit

Permalink
apply version updates (#203)
Browse files Browse the repository at this point in the history
Co-authored-by: thibault-martinez <[email protected]>
  • Loading branch information
github-actions[bot] and thibault-martinez authored Jun 14, 2023
1 parent baf4b83 commit b3bf01e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 13 deletions.
6 changes: 0 additions & 6 deletions .changes/bip39-safety-wrappers.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/typesafer-slip10.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[0.21.0]

- [`8bc7a70`](https://www.github.com/iotaledger/crypto.rs/commit/8bc7a70f86f094e272280d06fcca0fabfb8f8345)([#200](https://www.github.com/iotaledger/crypto.rs/pull/200)) Use safety wrappers for BIP39 mnemonic and passphrase types for encapsulating normalization (UTF-8 NFKD) checks and avoid potential secret leaks.
More secrecy awareness in BIP39 implementation.
- [`baf4b83`](https://www.github.com/iotaledger/crypto.rs/commit/baf4b832a104461eba6aecf3bfb14ce5dc5a16ea)([#201](https://www.github.com/iotaledger/crypto.rs/pull/201)) More static type safety for SLIP10 implementation to avoid runtime checks.

## \[0.20.1]

- [`57a3251`](https://www.github.com/iotaledger/crypto.rs/commit/57a3251af8876ecf4771449fce7bf887b7ed9391)([#197](https://www.github.com/iotaledger/crypto.rs/pull/197)) Use word separator provided in `WordList` when decoding. Disallow toleration for multiple whitespace when single whitespace is defined as a word separator.
Expand Down
11 changes: 9 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iota-crypto"
version = "0.20.1"
version = "0.21.0"
license = "Apache-2.0"
authors = [ "IOTA Stiftung" ]
edition = "2021"
Expand Down Expand Up @@ -63,7 +63,14 @@ wots_deprecated_do_not_use = [
sha = [ "dep:sha2", "digest" ]
hmac = [ "dep:hmac" ]
pbkdf2 = [ "dep:pbkdf2", "pbkdf2/hmac", "dep:sha2" ]
bip39 = [ "dep:iterator-sorted", "dep:unicode-normalization", "pbkdf2", "sha", "zeroize", "zeroize/alloc" ]
bip39 = [
"dep:iterator-sorted",
"dep:unicode-normalization",
"pbkdf2",
"sha",
"zeroize",
"zeroize/alloc"
]
bip39-en = [ "bip39" ]
bip39-jp = [ "bip39" ]
slip10 = [
Expand Down

0 comments on commit b3bf01e

Please sign in to comment.