diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b2f1d87..ee5e7213 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.8.0] - [v0.7.0] + ### Wallet - Added an option that must be explicitly enabled to allow signing using non-`SIGHASH_ALL` sighashes (#350) #### Changed @@ -339,7 +341,7 @@ final transaction is created by calling `finish` on the builder. - Use `MemoryDatabase` in the compiler example - Make the REPL return JSON -[unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.4.0...HEAD +[unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.8.0...HEAD [0.1.0-beta.1]: https://github.com/bitcoindevkit/bdk/compare/96c87ea5...0.1.0-beta.1 [v0.2.0]: https://github.com/bitcoindevkit/bdk/compare/0.1.0-beta.1...v0.2.0 [v0.3.0]: https://github.com/bitcoindevkit/bdk/compare/v0.2.0...v0.3.0 @@ -348,3 +350,4 @@ final transaction is created by calling `finish` on the builder. [v0.5.1]: https://github.com/bitcoindevkit/bdk/compare/v0.5.0...v0.5.1 [v0.6.0]: https://github.com/bitcoindevkit/bdk/compare/v0.5.1...v0.6.0 [v0.7.0]: https://github.com/bitcoindevkit/bdk/compare/v0.6.0...v0.7.0 +[v0.8.0]: https://github.com/bitcoindevkit/bdk/compare/v0.7.0...v0.8.0 \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 1aed6d62..67cb6bad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.7.1-dev" +version = "0.8.1-dev" edition = "2018" authors = ["Alekos Filini ", "Riccardo Casatta "] homepage = "https://bitcoindevkit.org" diff --git a/src/lib.rs b/src/lib.rs index 5eff7e0f..c2ab473b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -40,7 +40,7 @@ //! interact with the bitcoin P2P network. //! //! ```toml -//! bdk = "0.7.0" +//! bdk = "0.8.0" //! ``` #![cfg_attr( feature = "electrum",