Skip to content

Commit 4669fe2

Browse files
authored
Merge pull request rust-bitcoin#146 from sgeisler/2020-10-release-012
Prepare release of v0.12.0
2 parents 1f4865b + 5519eb8 commit 4669fe2

File tree

5 files changed

+34
-6
lines changed

5 files changed

+34
-6
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
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

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ fn main() {
3636

3737
See `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)
4149
This library should always compile with any combination of features on **Rust 1.29**.

client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitcoincore-rpc"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = [
55
"Steven Roose <steven@stevenroose.org>",
66
"Jean Pierre Dudey <jeandudey@hotmail.com>",
@@ -18,7 +18,7 @@ name = "bitcoincore_rpc"
1818
path = "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

2323
log = "0.4.5"
2424
jsonrpc = "0.11"

client/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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

json/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitcoincore-rpc-json"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = [
55
"Steven Roose <steven@stevenroose.org>",
66
"Jean Pierre Dudey <jeandudey@hotmail.com>",

0 commit comments

Comments
 (0)