From b9879a52990bc84b2ad66e94e58f981ffbab23bf Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Thu, 22 Jul 2021 08:54:58 +0300 Subject: [PATCH 1/2] Bump bitcoin dependency to 0.27 --- integration_test/Cargo.toml | 2 +- json/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/integration_test/Cargo.toml b/integration_test/Cargo.toml index ba9c3aa5..f2b0ee09 100644 --- a/integration_test/Cargo.toml +++ b/integration_test/Cargo.toml @@ -5,6 +5,6 @@ authors = ["Steven Roose "] [dependencies] bitcoincore-rpc = { path = "../client" } -bitcoin = { version = "0.26", features = [ "use-serde", "rand" ] } +bitcoin = { version = "0.27", features = [ "use-serde", "rand" ] } lazy_static = "1.4.0" log = "0.4" diff --git a/json/Cargo.toml b/json/Cargo.toml index 25f28e1b..3ec82f60 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -21,4 +21,4 @@ path = "src/lib.rs" serde = { version = "1", features = [ "derive" ] } serde_json = "1" -bitcoin = { version = "0.26", features = [ "use-serde" ] } +bitcoin = { version = "0.27", features = [ "use-serde" ] } From 679230cdf8e06edf5114eb1146a206ac7b11e42e Mon Sep 17 00:00:00 2001 From: Tibo-lg Date: Fri, 20 Aug 2021 15:35:00 +0900 Subject: [PATCH 2/2] Release 0.14.0 --- CHANGELOG.md | 10 ++++++++++ client/Cargo.toml | 4 ++-- json/Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3227ec46..0a01a441 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.14.0 + +- add `wallet_conflicts` field in `WalletTxInfo` +- add `get_chain_tips` +- add `get_block_template` +- implement `From` and `From>` for `ImportMultiRescanSince` +- bump rust-bitcoin dependency to 0.27 +- bump json-rpc dependency to 0.12.0 +- remove dependency on `hex` + # 0.13.0 - add `wallet_process_psbt` diff --git a/client/Cargo.toml b/client/Cargo.toml index de478d87..7c626af6 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoincore-rpc" -version = "0.13.0" +version = "0.14.0" authors = [ "Steven Roose ", "Jean Pierre Dudey ", @@ -18,7 +18,7 @@ name = "bitcoincore_rpc" path = "src/lib.rs" [dependencies] -bitcoincore-rpc-json = { version = "0.13.0", path = "../json" } +bitcoincore-rpc-json = { version = "0.14.0", path = "../json" } log = "0.4.5" jsonrpc = "0.12.0" diff --git a/json/Cargo.toml b/json/Cargo.toml index 3ec82f60..a3c0c074 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoincore-rpc-json" -version = "0.13.0" +version = "0.14.0" authors = [ "Steven Roose ", "Jean Pierre Dudey ",