This repository was archived by the owner on Nov 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +34
-6
lines changed
Expand file tree Collapse file tree 5 files changed +34
-6
lines changed Original file line number Diff line number Diff line change 1+ # 0.12.0
2+ - bump ` bitcoin ` dependency to version ` 0.25 ` , increasing our MSRV to ` 1.29.0 `
3+ - test against ` bitcoind ` ` 0.20.0 ` and ` 0.20.1 `
4+ - add ` get_balances `
5+ - add ` get_mempool_entry `
6+ - add ` list_since_block `
7+ - add ` get_mempool_entry `
8+ - add ` list_since_block `
9+ - add ` uptime `
10+ - add ` get_network_hash_ps `
11+ - add ` get_tx_out_set_info `
12+ - add ` get_net_totals `
13+ - partially implement ` scantxoutset `
14+ - extend ` create_wallet ` and related APIs
15+ - extend ` GetWalletInfoResult `
16+ - extend ` WalletTxInfo `
17+ - extend testsuite
18+ - fix ` GetPeerInfoResult `
19+ - fix ` GetNetworkInfoResult `
20+ - fix ` GetTransactionResultDetailCategory `
21+ - fix ` GetMempoolEntryResult ` for bitcoind prior to ` 0.19.0 `
22+ - fix ` GetBlockResult ` and ` GetBlockHeaderResult `
123
224# 0.11.0
325
Original file line number Diff line number Diff line change @@ -36,6 +36,14 @@ fn main() {
3636
3737See ` client/examples/ ` for more usage examples.
3838
39+ # Supported Bitcoin Core Versions
40+ The following versions are officially supported and automatically tested:
41+ * 0.18.0
42+ * 0.18.1
43+ * 0.19.0.1
44+ * 0.19.1
45+ * 0.20.0
46+ * 0.20.1
3947
4048# Minimum Supported Rust Version (MSRV)
4149This library should always compile with any combination of features on ** Rust 1.29** .
Original file line number Diff line number Diff line change 11[package ]
22name = " bitcoincore-rpc"
3- version = " 0.11 .0"
3+ version = " 0.12 .0"
44authors = [
55 " Steven Roose <steven@stevenroose.org>" ,
66 " Jean Pierre Dudey <jeandudey@hotmail.com>" ,
@@ -18,7 +18,7 @@ name = "bitcoincore_rpc"
1818path = " src/lib.rs"
1919
2020[dependencies ]
21- bitcoincore-rpc-json = { version = " 0.11 .0" , path = " ../json" }
21+ bitcoincore-rpc-json = { version = " 0.12 .0" , path = " ../json" }
2222
2323log = " 0.4.5"
2424jsonrpc = " 0.11"
Original file line number Diff line number Diff line change @@ -9,9 +9,7 @@ in the interface of this crate.
99
1010## MSRV
1111
12- The MSRV for this crate used to be 1.24.0, but that has recently been broken
13- by an external dependency. We have yet to decide on a new MSRV.
14-
12+ please see the parent README for the current MSRV.
1513
1614# License
1715
Original file line number Diff line number Diff line change 11[package ]
22name = " bitcoincore-rpc-json"
3- version = " 0.11 .0"
3+ version = " 0.12 .0"
44authors = [
55 " Steven Roose <steven@stevenroose.org>" ,
66 " Jean Pierre Dudey <jeandudey@hotmail.com>" ,
You can’t perform that action at this time.
0 commit comments