From a6aee0feec6f2e96399f17ad50021ac95a585941 Mon Sep 17 00:00:00 2001 From: Riccardo Casatta Date: Wed, 15 Nov 2023 12:13:17 +0100 Subject: [PATCH 1/2] upgrade bitcoincore-rpc --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 74d3178..70765f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" categories = ["cryptography::cryptocurrencies", "development-tools::testing"] [dependencies] -bitcoincore-rpc = { version = "0.17.0" } +bitcoincore-rpc = { version = "0.18.0" } log = "0.4" which = "4.2.5" anyhow = "1.0.66" @@ -21,7 +21,7 @@ tempfile = "3" env_logger = "0.9.0" [build-dependencies] -bitcoin_hashes = { version = "0.12", optional = true } +bitcoin_hashes = { version = "0.13", optional = true } flate2 = { version = "1.0", optional = true } tar = { version = "0.4", optional = true } minreq = { version = "2.9.1", default-features = false, features = [ From d571b7b1e7cba2a5d230f1873791a946d9509ea5 Mon Sep 17 00:00:00 2001 From: Riccardo Casatta Date: Wed, 15 Nov 2023 12:15:30 +0100 Subject: [PATCH 2/2] bump version 0.33.3 -> 0.34.0 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab35322..f047411 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Release 0.34.0 + +- upgrade bitcoincore dep to 0.18.0 and with it bitcoin to 0.31.0 + ## Release 0.28.0 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 70765f2..922cb92 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoind" -version = "0.33.3" +version = "0.34.0" authors = ["Riccardo Casatta "] description = "Utility to run a regtest bitcoind process, useful in integration testing environment" license = "MIT"