Release v2.2.0

This commit is contained in:
Steven Roose 2025-06-12 12:40:50 +01:00
parent bc5a233b3d
commit e9785082bd
No known key found for this signature in database
GPG Key ID: 2F2A88D7F8D68E87
3 changed files with 7 additions and 9 deletions

View File

@ -1,6 +1,10 @@
CHANGELOG CHANGELOG
========= =========
# v2.2.0
- Unpin unicode-normalization version
# v2.1.0 # v2.1.0
- Add support for Portuguese as per addition to BIP. - Add support for Portuguese as per addition to BIP.

View File

@ -17,12 +17,12 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
[[package]] [[package]]
name = "bip39" name = "bip39"
version = "2.1.0" version = "2.2.0"
dependencies = [ dependencies = [
"bip39", "bip39",
"bitcoin_hashes", "bitcoin_hashes",
"rand", "rand",
"rand_core 0.6.4", "rand_core 0.4.2",
"serde", "serde",
"unicode-normalization", "unicode-normalization",
"zeroize", "zeroize",
@ -142,12 +142,6 @@ version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
[[package]] [[package]]
name = "rand_hc" name = "rand_hc"
version = "0.1.0" version = "0.1.0"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "bip39" name = "bip39"
version = "2.1.0" version = "2.2.0"
authors = ["Steven Roose <steven@stevenroose.org>"] authors = ["Steven Roose <steven@stevenroose.org>"]
license = "CC0-1.0" license = "CC0-1.0"
homepage = "https://github.com/rust-bitcoin/rust-bip39/" homepage = "https://github.com/rust-bitcoin/rust-bip39/"