diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c5fbf4db..09e969e32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# 8.0.0 - Sept X, 2022 + +- bump `rust-bitcoin` to 0.29.1 +- Update the MSRV to Rust 1.41.1 and enable edition 2018. +- Add `Hash256` associated type +- Re-name `as_public` <-> to_public +- Implement `hash::Hash` +- Rename `stackelem` to `stack_elem` +- Implement `source` for error types +- Implement `is_empty` on `TokenIter` +- Add feature "serde" +- Clean up the examples +- several bugfixes +- several refactorings +- rustfmt configuration by crate +- Clear some compiler and clippy warnings + # 7.0.0 - April 20, 2022 - Fixed miniscript type system bug. This is a security vulnerability and users are strongly encouraged to upgrade. diff --git a/Cargo.toml b/Cargo.toml index cf511fb87..6371d799b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miniscript" -version = "7.0.0" +version = "8.0.0" authors = ["Andrew Poelstra , Sanket Kanjalkar "] license = "CC0-1.0" homepage = "https://github.com/rust-bitcoin/rust-miniscript/"