diff --git a/.github/workflows/nightly_docs.yml b/.github/workflows/nightly_docs.yml index 9ec7fe5c3..a82beb2de 100644 --- a/.github/workflows/nightly_docs.yml +++ b/.github/workflows/nightly_docs.yml @@ -18,7 +18,7 @@ jobs: target key: nightly-docs-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }} - name: Set default toolchain - run: rustup default nightly + run: rustup default nightly-2022-01-25 - name: Set profile run: rustup set profile minimal - name: Update toolchain diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f7dece9b..e74e71b9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v0.16.1] - [v0.16.0] + +- Pin tokio dependency version to ~1.14 to prevent errors due to their new MSRV 1.49.0 + ## [v0.16.0] - [v0.15.0] - Disable `reqwest` default features. @@ -411,4 +415,5 @@ final transaction is created by calling `finish` on the builder. [v0.13.0]: https://github.com/bitcoindevkit/bdk/compare/v0.12.0...v0.13.0 [v0.14.0]: https://github.com/bitcoindevkit/bdk/compare/v0.13.0...v0.14.0 [v0.15.0]: https://github.com/bitcoindevkit/bdk/compare/v0.14.0...v0.15.0 -[v0.16.0]: https://github.com/bitcoindevkit/bdk/compare/v0.15.0...v0.16.0 \ No newline at end of file +[v0.16.0]: https://github.com/bitcoindevkit/bdk/compare/v0.15.0...v0.16.0 +[v0.16.1]: https://github.com/bitcoindevkit/bdk/compare/v0.16.0...v0.16.1 \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index b79becebf..3a470dc2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.16.1-dev" +version = "0.16.2-dev" edition = "2018" authors = ["Alekos Filini ", "Riccardo Casatta "] homepage = "https://bitcoindevkit.org" @@ -42,7 +42,7 @@ bitcoincore-rpc = { version = "0.14", optional = true } # Platform-specific dependencies [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -tokio = { version = "1", features = ["rt"] } +tokio = { version = "~1.14", features = ["rt"] } [target.'cfg(target_arch = "wasm32")'.dependencies] async-trait = "0.1" diff --git a/src/lib.rs b/src/lib.rs index c2043fbc2..0423dc4f6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -44,7 +44,7 @@ //! interact with the bitcoin P2P network. //! //! ```toml -//! bdk = "0.16.0" +//! bdk = "0.16.1" //! ``` #![cfg_attr( feature = "electrum",