Skip to content

Commit 9279882

Browse files
committed
Depend on latest bitcoincore-rpc
The latest `bitcoincore-rpc` is not compatible with earlier versions so we can no longer use a range dependency. Upgrade to latest version of `bitcoincore-rpc` and remove the range dependency from crate manifest. In preparation for release, add a changelog entry and bump the version.
1 parent 7694749 commit 9279882

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.36.0
4+
5+
- Remove range dependencies for `bitcoincore-rpc` and depend on the
6+
latest version `v0.19.0` [#163](https://github.com/rust-bitcoin/bitcoind/pull/163).
7+
38
## 0.35.2
49

510
- Use range dependencies for `bitcoincore-rpc` and `bitcoin_hashes`

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitcoind"
3-
version = "0.35.2"
3+
version = "0.36.0"
44
authors = ["Riccardo Casatta <[email protected]>"]
55
description = "Utility to run a regtest bitcoind process, useful in integration testing environment"
66
license = "MIT"
@@ -11,7 +11,7 @@ edition = "2018"
1111
categories = ["cryptography::cryptocurrencies", "development-tools::testing"]
1212

1313
[dependencies]
14-
bitcoincore-rpc = { version = ">= 0.17.0, <= 0.19" }
14+
bitcoincore-rpc = { version = "0.19", features = ["rand"] }
1515
log = "0.4"
1616
which = "4.2.5"
1717
anyhow = "1.0.66"

0 commit comments

Comments
 (0)