Skip to content

Commit 576e10b

Browse files
committed
Merge #475: Upgrade bitcoin hashes
d31bbc1 Bump version number to v0.24.0 (Tobin C. Harding) 6062ea7 Upgrade to bitcoin_hashes v0.11.0 (Tobin C. Harding) 510e58a Remove leading whitespace character (Tobin C. Harding) Pull request description: We have updated the `bitcoin_hashes` version, this requires a minor version bump and release. - Patch 1: trivial clean up in the manifest - Patch 2: upgrade `bitcoin_hashes` dependency ACKs for top commit: sanket1729: utACK d31bbc1. apoelstra: ACK d31bbc1 Tree-SHA512: 940f30218955a9f47d253764143b80868ea2f9d53503c00a71938ec19082f3081e7cfe9dd9bef2bc6ef304344645bdd4ed3d6bbfba332f4a94e5c70e381b6f88
2 parents 71b47d1 + d31bbc1 commit 576e10b

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2+
# 0.24.0 - 2022-07-20
3+
4+
* Upgrade to new release of [bitcoin_hashes](https://github.com/rust-bitcoin/bitcoin_hashes/releases/tag/0.11.0).
5+
16
# 0.23.4 - 2022-07-14
27

38
* [Disable automatic rerandomization of contexts under WASM](https://github.com/rust-bitcoin/rust-secp256k1/pull/474)

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secp256k1"
3-
version = "0.23.4"
3+
version = "0.24.0"
44
authors = [ "Dawid Ciężarkiewicz <[email protected]>",
55
"Andrew Poelstra <[email protected]>" ]
66
license = "CC0-1.0"
@@ -21,8 +21,8 @@ rustdoc-args = ["--cfg", "docsrs"]
2121
default = ["std"]
2222
std = ["alloc", "secp256k1-sys/std"]
2323
# allow use of Secp256k1::new and related API that requires an allocator
24-
alloc = ["secp256k1-sys/alloc"]
25-
bitcoin-hashes-std = ["bitcoin_hashes/std"]
24+
alloc = ["secp256k1-sys/alloc"]
25+
bitcoin-hashes-std = ["bitcoin_hashes/std"]
2626
rand-std = ["rand/std", "rand/std_rng"]
2727
recovery = ["secp256k1-sys/recovery"]
2828
lowmemory = ["secp256k1-sys/lowmemory"]
@@ -41,14 +41,14 @@ serde = { version = "1.0", default-features = false, optional = true }
4141

4242
# You likely only want to enable these if you explicitly do not want to use "std", otherwise enable
4343
# the respective -std feature e.g., bitcoin-hashes-std
44-
bitcoin_hashes = { version = "0.10", default-features = false, optional = true }
44+
bitcoin_hashes = { version = "0.11", default-features = false, optional = true }
4545
rand = { version = "0.8", default-features = false, optional = true }
4646

4747
[dev-dependencies]
4848
rand = "0.8"
4949
rand_core = "0.6"
5050
serde_test = "1.0"
51-
bitcoin_hashes = "0.10"
51+
bitcoin_hashes = "0.11"
5252
bincode = "1.3.3"
5353

5454
# cbor does not build on WASM, we use it in a single trivial test (an example of when

0 commit comments

Comments
 (0)