From a83aa0461c607a776a833ae2d6818afbc856d79d Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Fri, 4 Feb 2022 08:55:00 -0600 Subject: [PATCH 1/4] [ci] Pin nightly docs workflow rust version to nightly-2022-01-25 --- .github/workflows/nightly_docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 5698c683c6f8543379ddf15dc24338fe4c86e7cc Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Thu, 17 Feb 2022 11:37:39 -0800 Subject: [PATCH 2/4] Pin tokio version to ~1.14 --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f7dece9b..319c83cca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +- 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. diff --git a/Cargo.toml b/Cargo.toml index b79becebf..d8a5ab46e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" From f3e479fa7f7240c888727ce2cf29f7f79fc4b2b3 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Sat, 19 Feb 2022 12:46:17 -0800 Subject: [PATCH 3/4] Bump version to 0.16.1 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 319c83cca..e74e71b9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ 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] @@ -413,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 d8a5ab46e..5efa0cc8b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.16.1-dev" +version = "0.16.1" edition = "2018" authors = ["Alekos Filini ", "Riccardo Casatta "] homepage = "https://bitcoindevkit.org" 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", From 552765bb58860f90b9b4526d2181bc31bfa07b86 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Sat, 19 Feb 2022 13:10:04 -0800 Subject: [PATCH 4/4] Bump version to 0.16.2-dev --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5efa0cc8b..3a470dc2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.16.1" +version = "0.16.2-dev" edition = "2018" authors = ["Alekos Filini ", "Riccardo Casatta "] homepage = "https://bitcoindevkit.org"