Compare commits
4 Commits
release/0.
...
release/0.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2a8c8c2bb6 | ||
|
|
67b083fa03 | ||
|
|
213c270ab4 | ||
|
|
7914ff03d3 |
38
.github/workflows/cont_integration.yml
vendored
38
.github/workflows/cont_integration.yml
vendored
@@ -69,12 +69,17 @@ jobs:
|
||||
cargo update -p zip:0.6.6 --precise "0.6.3"
|
||||
cargo update -p rustix --precise "0.37.23"
|
||||
cargo update -p tokio --precise "1.29.1"
|
||||
cargo update -p tokio-util --precise "0.7.8"
|
||||
cargo update -p cc --precise "1.0.81"
|
||||
cargo update -p rustls:0.21.6 --precise "0.21.1"
|
||||
cargo update -p rustls:0.20.9 --precise "0.20.8"
|
||||
cargo update -p rustls:0.21.7 --precise "0.21.1"
|
||||
cargo update -p flate2:1.0.27 --precise "1.0.26"
|
||||
cargo update -p reqwest --precise "0.11.18"
|
||||
cargo update -p h2 --precise "0.3.20"
|
||||
cargo update -p rustls-webpki --precise "0.100.1"
|
||||
cargo update -p rustls-webpki:0.100.3 --precise "0.100.1"
|
||||
cargo update -p rustls-webpki:0.101.6 --precise "0.101.1"
|
||||
cargo update -p byteorder --precise "1.4.3"
|
||||
cargo update -p webpki --precise "0.22.2"
|
||||
- name: Build
|
||||
run: cargo build --features ${{ matrix.features }} --no-default-features
|
||||
- name: Clippy
|
||||
@@ -227,17 +232,22 @@ jobs:
|
||||
if: matrix.rust.version == '1.57.0'
|
||||
run: |
|
||||
cargo update -p log --precise "0.4.18"
|
||||
cargo update -p tempfile --precise "3.6.0"
|
||||
cargo update -p hashlink --precise "0.8.1"
|
||||
cargo update -p regex --precise "1.7.3"
|
||||
cargo update -p zip:0.6.6 --precise "0.6.3"
|
||||
cargo update -p rustix --precise "0.37.23"
|
||||
cargo update -p tokio --precise "1.29.1"
|
||||
cargo update -p cc --precise "1.0.81"
|
||||
cargo update -p rustls:0.21.6 --precise "0.21.1"
|
||||
cargo update -p flate2:1.0.27 --precise "1.0.26"
|
||||
cargo update -p reqwest --precise "0.11.18"
|
||||
cargo update -p h2 --precise "0.3.20"
|
||||
cargo update -p rustls-webpki --precise "0.100.1"
|
||||
cargo update -p tempfile --precise "3.6.0"
|
||||
cargo update -p hashlink --precise "0.8.1"
|
||||
cargo update -p regex --precise "1.7.3"
|
||||
cargo update -p zip:0.6.6 --precise "0.6.3"
|
||||
cargo update -p rustix --precise "0.37.23"
|
||||
cargo update -p tokio --precise "1.29.1"
|
||||
cargo update -p tokio-util --precise "0.7.8"
|
||||
cargo update -p cc --precise "1.0.81"
|
||||
cargo update -p rustls:0.20.9 --precise "0.20.8"
|
||||
cargo update -p rustls:0.21.7 --precise "0.21.1"
|
||||
cargo update -p flate2:1.0.27 --precise "1.0.26"
|
||||
cargo update -p reqwest --precise "0.11.18"
|
||||
cargo update -p h2 --precise "0.3.20"
|
||||
cargo update -p rustls-webpki:0.100.3 --precise "0.100.1"
|
||||
cargo update -p rustls-webpki:0.101.6 --precise "0.101.1"
|
||||
cargo update -p byteorder --precise "1.4.3"
|
||||
cargo update -p webpki --precise "0.22.2"
|
||||
- name: Test
|
||||
run: cargo test --features test-hardware-signer
|
||||
|
||||
17
CHANGELOG.md
17
CHANGELOG.md
@@ -9,6 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [v0.29.0]
|
||||
|
||||
### Summary
|
||||
|
||||
This maintenance release updates our `rust-bitcoin` dependency to 0.30.x and fixes a wallet balance bug when a wallet has more than one coinbase transaction.
|
||||
|
||||
### Changed
|
||||
|
||||
- Update rust-bitcoin to 0.30 #1071
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix a bug when syncing coinbase utxos on electrum #1090
|
||||
|
||||
## [v0.28.2]
|
||||
|
||||
### Summary
|
||||
@@ -678,4 +692,5 @@ final transaction is created by calling `finish` on the builder.
|
||||
[v0.28.0]: https://github.com/bitcoindevkit/bdk/compare/v0.27.1...v0.28.0
|
||||
[v0.28.1]: https://github.com/bitcoindevkit/bdk/compare/v0.28.0...v0.28.1
|
||||
[v0.28.2]: https://github.com/bitcoindevkit/bdk/compare/v0.28.1...v0.28.2
|
||||
[Unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.28.2...HEAD
|
||||
[v0.29.0]: https://github.com/bitcoindevkit/bdk/compare/v0.28.2...v0.29.0
|
||||
[Unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.29.0...HEAD
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "bdk"
|
||||
version = "0.28.2"
|
||||
version = "0.29.0"
|
||||
edition = "2018"
|
||||
authors = ["Alekos Filini <alekos.filini@gmail.com>", "Riccardo Casatta <riccardo@casatta.it>"]
|
||||
homepage = "https://bitcoindevkit.org"
|
||||
|
||||
16
README.md
16
README.md
@@ -221,12 +221,16 @@ cargo update -p regex --precise "1.7.3"
|
||||
cargo update -p zip:0.6.6 --precise "0.6.3"
|
||||
# rustix 0.38.0 has MSRV 1.65.0
|
||||
cargo update -p rustix --precise "0.37.23"
|
||||
# tokio 0.30.0 has MSRV 1.63.0
|
||||
# tokio 1.30 has MSRV 1.63.0+
|
||||
cargo update -p tokio --precise "1.29.1"
|
||||
# tokio-util 0.7.9 doesn't build with MSRV 1.57.0
|
||||
cargo update -p tokio-util --precise "0.7.8"
|
||||
# cc 1.0.82 is throwing error with rust 1.57.0, "error[E0599]: no method named `retain_mut`..."
|
||||
cargo update -p cc --precise "1.0.81"
|
||||
# rustls 0.20.9 has MSRV 1.60.0+
|
||||
cargo update -p rustls:0.20.9 --precise "0.20.8"
|
||||
# rustls 0.21.2 has MSRV 1.60.0+
|
||||
cargo update -p rustls:0.21.6 --precise "0.21.1"
|
||||
cargo update -p rustls:0.21.7 --precise "0.21.1"
|
||||
# flate2 1.0.27 has MSRV 1.63.0+
|
||||
cargo update -p flate2:1.0.27 --precise "1.0.26"
|
||||
# reqwest 0.11.19 has MSRV 1.63.0+
|
||||
@@ -234,5 +238,11 @@ cargo update -p reqwest --precise "0.11.18"
|
||||
# h2 0.3.21 has MSRV 1.63.0+
|
||||
cargo update -p h2 --precise "0.3.20"
|
||||
# rustls-webpki 0.100.2 has MSRV 1.60+
|
||||
cargo update -p rustls-webpki --precise "0.100.2"
|
||||
cargo update -p rustls-webpki:0.100.3 --precise "0.100.1"
|
||||
# rustls-webpki 0.101.6 has MSRV 1.60+
|
||||
cargo update -p rustls-webpki:0.101.6 --precise "0.101.1"
|
||||
# byteorder 1.5.0 has MSRV 1.60.0+
|
||||
cargo update -p byteorder --precise "1.4.3"
|
||||
# webpki 0.22.4 requires `ring:0.17.2` which has MSRV 1.61.0+
|
||||
cargo update -p webpki --precise "0.22.2"
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user