Merge pull request #88 from rust-bitcoin/release-2.2.0

Release v2.2.0
This commit is contained in:
Steven Roose 2025-06-16 00:27:17 +01:00 committed by GitHub
commit 5bb47117ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 9 deletions

View File

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

View File

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

View File

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