Skip to content

Commit 9a6f54e

Browse files
committed
Add hashes 0.14 to the dependency range
We just release a new version of `bitcoin_hashes` which works with `bip39` with no changes. Add `bitcoin_hashes v0.14` to the dependency range and document its effect on the MSRV. (Note, the "alloc" feature is required as of 0.14).
1 parent 93d3484 commit 9a6f54e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ serde = { version = "1.0", default-features = false, features = [ "alloc" ], opt
4949
zeroize = { version = "1.5", features = ["zeroize_derive"], optional = true }
5050

5151
# Unexported dependnecies
52-
bitcoin_hashes = { version = ">=0.12, <=0.13", default-features = false }
52+
bitcoin_hashes = { version = ">=0.12, <=0.14", default-features = false, features = ["alloc"] }
5353
unicode-normalization = { version = "=0.1.22", default-features = false, optional = true }
5454

5555
[dev-dependencies]
56-
bitcoin_hashes = ">=0.12,<0.14" # enable default features for test
56+
bitcoin_hashes = ">=0.12,<=0.14" # enable default features for test
5757

5858

5959
[package.metadata.docs.rs]

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ The `bitcoin_hashes` range dependency effects the MSRV as follows
3535

3636
- `bitcoin_hashes v0.12`: MSRV v1.41.1
3737
- `bitcoin_hashes v0.13`: MSRV v1.48.0
38+
- `bitcoin_hashes v0.14`: MSRV v1.56.1
3839

3940
When using older version of Rust, you might have to pin the version of the
4041
`bitcoin_hashes` crate used as such:

0 commit comments

Comments
 (0)