diff --git a/CHANGELOG.md b/CHANGELOG.md index 123db4347..338b89c1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v0.30.1] + +### Fixed + +- Fix electrum conftime_req filter for needs_block_height #1782 + ## [v0.30.0] ### Summary @@ -700,4 +706,5 @@ final transaction is created by calling `finish` on the builder. [v0.28.2]: https://github.com/bitcoindevkit/bdk/compare/v0.28.1...v0.28.2 [v0.29.0]: https://github.com/bitcoindevkit/bdk/compare/v0.28.2...v0.29.0 [v0.30.0]: https://github.com/bitcoindevkit/bdk/compare/v0.29.0...v0.30.0 -[Unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.30.0...HEAD +[v0.30.1]: https://github.com/bitcoindevkit/bdk/compare/v0.30.0...v0.30.1 +[Unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.30.1...release/0.29 diff --git a/Cargo.toml b/Cargo.toml index 4e33f6adb..1e322643c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.30.0" +version = "0.30.1" authors = ["Alekos Filini ", "Riccardo Casatta "] homepage = "https://bitcoindevkit.org" repository = "https://github.com/bitcoindevkit/bdk" diff --git a/README.md b/README.md index 446166f3c..106610d42 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,12 @@ +## !! DEPRECATED !! + +The [bdk](https://crates.io/crates/bdk) library is now deprecated and replaced by [bdk_wallet](https://crates.io/crates/bdk_wallet). All projects should migrate to [bdk_wallet 1.0.0](https://crates.io/crates/bdk_wallet/1.0.0) or newer as soon as possible. For migration instructions see the ["Book of BDK"](https://bitcoindevkit.github.io/book-of-bdk/) chapter on ["Migrating from 0.x"](https://bitcoindevkit.github.io/book-of-bdk/getting-started/migrating/). + +The BDK team will continue to publish `bdk` `0.30.x` bug fix releases as needed, but only for a limited time. + ## About The `bdk` library aims to be the core building block for Bitcoin wallets of any kind. diff --git a/src/lib.rs b/src/lib.rs index 931799322..80481b4af 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -21,6 +21,17 @@ //! A modern, lightweight, descriptor-based wallet library written in Rust. //! +//! ## !! DEPRECATED !! +//! +//! The [bdk](https://crates.io/crates/bdk) library is now deprecated and replaced by +//! [bdk_wallet](https://crates.io/crates/bdk_wallet). All projects should migrate to +//! [bdk_wallet 1.0.0](https://crates.io/crates/bdk_wallet/1.0.0) or newer as soon as possible. For +//! migration instructions see the ["Book of BDK"](https://bitcoindevkit.github.io/book-of-bdk/) +//! chapter on ["Migrating from 0.x"](https://bitcoindevkit.github.io/book-of-bdk/getting-started/migrating/). +//! +//! The BDK team will continue to publish `bdk` `0.30.x` bug fix releases as needed, but only for a +//! limited time. +//! //! # About //! //! The BDK library aims to be the core building block for Bitcoin wallets of any kind.