Skip to content

Commit

Permalink
Depend on latest bitcoincore-rpc
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tcharding committed May 15, 2024
1 parent 7694749 commit 9279882
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.36.0

- Remove range dependencies for `bitcoincore-rpc` and depend on the
latest version `v0.19.0` [#163](https://github.com/rust-bitcoin/bitcoind/pull/163).

## 0.35.2

- Use range dependencies for `bitcoincore-rpc` and `bitcoin_hashes`
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitcoind"
version = "0.35.2"
version = "0.36.0"
authors = ["Riccardo Casatta <[email protected]>"]
description = "Utility to run a regtest bitcoind process, useful in integration testing environment"
license = "MIT"
Expand All @@ -11,7 +11,7 @@ edition = "2018"
categories = ["cryptography::cryptocurrencies", "development-tools::testing"]

[dependencies]
bitcoincore-rpc = { version = ">= 0.17.0, <= 0.19" }
bitcoincore-rpc = { version = "0.19", features = ["rand"] }
log = "0.4"
which = "4.2.5"
anyhow = "1.0.66"
Expand Down

0 comments on commit 9279882

Please sign in to comment.