From 1de0deeae0f5540f2644a75eff118407ec0d8db3 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Thu, 16 Mar 2023 10:40:49 -0500 Subject: [PATCH 1/2] Revert "Set default-features = false for rust-bitcoin" This reverts commit 87c558c9cf61bfa4cc468ddfe67d49608f26b6e0. --- Cargo.toml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 64413ce8b..c936d5540 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,8 +14,8 @@ license = "MIT OR Apache-2.0" [dependencies] bdk-macros = "^0.6" log = "^0.4" -miniscript = { version = "9.0", default-features = false, features = ["serde"] } -bitcoin = { version = "0.29.2", default-features = false, features = ["serde", "base64", "rand"] } +miniscript = { version = "9.0", features = ["serde"] } +bitcoin = { version = "0.29.1", features = ["serde", "base64", "rand"] } serde = { version = "^1.0", features = ["derive"] } serde_json = { version = "^1.0" } rand = "^0.8" @@ -31,7 +31,7 @@ async-trait = { version = "0.1", optional = true } rocksdb = { version = "0.14", default-features = false, features = ["snappy"], optional = true } cc = { version = ">=1.0.64", optional = true } socks = { version = "0.3", optional = true } -hwi = { version = "0.5", optional = true, features = ["use-miniscript"] } +hwi = { version = "0.5", optional = true, features = [ "use-miniscript"] } bip39 = { version = "1.0.1", optional = true } bitcoinconsensus = { version = "0.19.0-3", optional = true } @@ -104,8 +104,6 @@ test-hardware-signer = ["hardware-signer"] dev-getrandom-wasm = ["getrandom/js"] [dev-dependencies] -miniscript = { version = "9.0", features = ["std"] } -bitcoin = { version = "0.29.2", features = ["std"] } lazy_static = "1.4" env_logger = "0.7" electrsd = "0.22" From 9bc8cf902b67d7bd9992fcf891c42587d2df8cd3 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Thu, 16 Mar 2023 10:58:05 -0500 Subject: [PATCH 2/2] Mark release 0.27.2 as yanked in changelog --- CHANGELOG.md | 11 ++--------- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ecb49c8e..c95c0d234 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,14 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [v0.27.2] -### Summary - -Disable default-features for rust-bitcoin and rust-miniscript dependencies, and for rust-esplora-client optional dependency. - -### Changed - -- Set default-features = false for rust-bitcoin and rust-miniscript #882 -- Update esplora client dependency to version 0.4 #884 +**Yanked** ## [v0.27.1] @@ -654,4 +647,4 @@ final transaction is created by calling `finish` on the builder. [v0.27.0]: https://github.com/bitcoindevkit/bdk/compare/v0.26.0...v0.27.0 [v0.27.1]: https://github.com/bitcoindevkit/bdk/compare/v0.27.0...v0.27.1 [v0.27.2]: https://github.com/bitcoindevkit/bdk/compare/v0.27.1...v0.27.2 -[Unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.27.2...HEAD +[Unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.27.1...release/0.27 diff --git a/Cargo.toml b/Cargo.toml index c936d5540..97a258ac0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ async-trait = { version = "0.1", optional = true } rocksdb = { version = "0.14", default-features = false, features = ["snappy"], optional = true } cc = { version = ">=1.0.64", optional = true } socks = { version = "0.3", optional = true } -hwi = { version = "0.5", optional = true, features = [ "use-miniscript"] } +hwi = { version = "0.5", optional = true, features = ["use-miniscript"] } bip39 = { version = "1.0.1", optional = true } bitcoinconsensus = { version = "0.19.0-3", optional = true }