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/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..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 ", @@ -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" ] }