Skip to content

Commit 07b97fa

Browse files
committed
Merge #84: New release
19f539d introduce CHANGELOG.md (Riccardo Casatta) cad706b bump to 0.27.0 (Riccardo Casatta) 5547374 upgrade bitcoincore dep (Riccardo Casatta) Pull request description: ACKs for top commit: notmandatory: utACK 19f539d danielabrozzoni: utACK 19f539d Tree-SHA512: 33976f1c39a08e932b7dcd9b3a73bf9bea64301443f4419449acf76ec6bd1c849384f89ac8e7c5628a67bbce7d699807d39714f32babcea873b0bef72afed664
2 parents 8297cb4 + 19f539d commit 07b97fa

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Changelog
2+
3+
## Release 0.27.0
4+
5+
### Added
6+
7+
- Introduced CHANGELOG
8+
- Supports windows OS
9+
- Provide errors if `rpcuser` and `rpcpassword` are provided
10+
11+
### Changed
12+
13+
- use bitcoin dep to 0.29.1
14+
15+
### Fixed
16+
17+
- fix bitcoin 0.23 on MacOS X
18+
- fix test flakyness
19+
20+
### Removed
21+
22+
- removed `datadir` from `ConnectionParams`, use equivalent `workdir()`

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitcoind"
3-
version = "0.26.1"
3+
version = "0.27.0"
44
authors = ["Riccardo Casatta <[email protected]>"]
55
description = "Utility to run a regtest bitcoind process, useful in integration testing environment"
66
license = "MIT"
@@ -9,7 +9,7 @@ documentation = "https://docs.rs/bitcoind/"
99
edition = "2018"
1010

1111
[dependencies]
12-
bitcoincore-rpc = "0.15.0"
12+
bitcoincore-rpc = "0.16.0"
1313
tempfile = "3.1"
1414
log = "0.4"
1515
which = "4.2.5"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ mod test {
642642

643643
// bob wallet may not be immediately updated
644644
for _ in 0..30 {
645-
if bob.get_balances().unwrap().mine.untrusted_pending.as_sat() > 0 {
645+
if bob.get_balances().unwrap().mine.untrusted_pending.to_sat() > 0 {
646646
break;
647647
}
648648
std::thread::sleep(std::time::Duration::from_millis(100));

0 commit comments

Comments
 (0)