Upgrade hashes dependency

Keep the range versioning but increase the threshould to include the
upcoming `v0.14.0` release.
This commit is contained in:
Tobin C. Harding 2024-03-21 15:54:32 +11:00
parent ac706178bf
commit 645271dd74
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
# Unreleased
* Bump MSRV to Rust `v1.56.1`
* Upgrade `hashes` using range dependency `version = ">= 0.12, <= 0.14"`.
# 0.28.2 - 2024-01-30

View File

@ -41,7 +41,7 @@ serde = { version = "1.0.103", default-features = false, optional = true }
# You likely only want to enable these if you explicitly do not want to use "std", otherwise enable
# the respective -std feature e.g., hashes-std
hashes = { package = "bitcoin_hashes", version = ">= 0.12, <= 0.13", default-features = false, optional = true }
hashes = { package = "bitcoin_hashes", version = ">= 0.12, <= 0.14", default-features = false, optional = true }
rand = { version = "0.8", default-features = false, optional = true }
[dev-dependencies]