Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0ba6bbe114 | ||
|
|
361f925526 |
4
.github/workflows/cont_integration.yml
vendored
4
.github/workflows/cont_integration.yml
vendored
@@ -69,6 +69,8 @@ jobs:
|
|||||||
cargo update -p zip --precise "0.6.3"
|
cargo update -p zip --precise "0.6.3"
|
||||||
cargo update -p base64ct --precise "1.5.3"
|
cargo update -p base64ct --precise "1.5.3"
|
||||||
cargo update -p rustix --precise "0.37.23"
|
cargo update -p rustix --precise "0.37.23"
|
||||||
|
cargo update -p tokio --precise "1.29.1"
|
||||||
|
cargo update -p cc --precise "1.0.81"
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cargo build --features ${{ matrix.features }} --no-default-features
|
run: cargo build --features ${{ matrix.features }} --no-default-features
|
||||||
- name: Clippy
|
- name: Clippy
|
||||||
@@ -227,5 +229,7 @@ jobs:
|
|||||||
cargo update -p zip --precise "0.6.3"
|
cargo update -p zip --precise "0.6.3"
|
||||||
cargo update -p base64ct --precise "1.5.3"
|
cargo update -p base64ct --precise "1.5.3"
|
||||||
cargo update -p rustix --precise "0.37.23"
|
cargo update -p rustix --precise "0.37.23"
|
||||||
|
cargo update -p tokio --precise "1.29.1"
|
||||||
|
cargo update -p cc --precise "1.0.81"
|
||||||
- name: Test
|
- name: Test
|
||||||
run: cargo test --features test-hardware-signer
|
run: cargo test --features test-hardware-signer
|
||||||
|
|||||||
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [v0.28.2]
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Reverts the 0.28.1 esplora-client version update from 0.5.0 back to 0.4.0.
|
||||||
|
|
||||||
## [v0.28.1]
|
## [v0.28.1]
|
||||||
|
|
||||||
### Summary
|
### Summary
|
||||||
@@ -671,4 +677,5 @@ final transaction is created by calling `finish` on the builder.
|
|||||||
[v0.27.1]: https://github.com/bitcoindevkit/bdk/compare/v0.27.0...v0.27.1
|
[v0.27.1]: https://github.com/bitcoindevkit/bdk/compare/v0.27.0...v0.27.1
|
||||||
[v0.28.0]: https://github.com/bitcoindevkit/bdk/compare/v0.27.1...v0.28.0
|
[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.1]: https://github.com/bitcoindevkit/bdk/compare/v0.28.0...v0.28.1
|
||||||
[Unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.28.1...HEAD
|
[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
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bdk"
|
name = "bdk"
|
||||||
version = "0.28.1"
|
version = "0.28.2"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Alekos Filini <alekos.filini@gmail.com>", "Riccardo Casatta <riccardo@casatta.it>"]
|
authors = ["Alekos Filini <alekos.filini@gmail.com>", "Riccardo Casatta <riccardo@casatta.it>"]
|
||||||
homepage = "https://bitcoindevkit.org"
|
homepage = "https://bitcoindevkit.org"
|
||||||
@@ -23,7 +23,7 @@ rand = "^0.8"
|
|||||||
# Optional dependencies
|
# Optional dependencies
|
||||||
sled = { version = "0.34", optional = true }
|
sled = { version = "0.34", optional = true }
|
||||||
electrum-client = { version = "0.12", optional = true }
|
electrum-client = { version = "0.12", optional = true }
|
||||||
esplora-client = { version = "0.5", default-features = false, optional = true }
|
esplora-client = { version = "0.4", default-features = false, optional = true }
|
||||||
rusqlite = { version = "0.28.0", optional = true }
|
rusqlite = { version = "0.28.0", optional = true }
|
||||||
ahash = { version = "0.7.6", optional = true }
|
ahash = { version = "0.7.6", optional = true }
|
||||||
futures = { version = "0.3", optional = true }
|
futures = { version = "0.3", optional = true }
|
||||||
|
|||||||
@@ -223,4 +223,8 @@ cargo update -p zip --precise "0.6.3"
|
|||||||
cargo update -p base64ct --precise "1.5.3"
|
cargo update -p base64ct --precise "1.5.3"
|
||||||
# rustix 0.38.0 has MSRV 1.65.0
|
# rustix 0.38.0 has MSRV 1.65.0
|
||||||
cargo update -p rustix --precise "0.37.23"
|
cargo update -p rustix --precise "0.37.23"
|
||||||
|
# tokio 0.30.0 has MSRV 1.63.0
|
||||||
|
cargo update -p tokio --precise "1.29.1"
|
||||||
|
# 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"
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user