From 94e29717506c7bf100cf40cbc3cf3831175e7485 Mon Sep 17 00:00:00 2001 From: Jose D Robles Date: Wed, 14 Sep 2022 09:52:58 +0200 Subject: [PATCH 1/3] Updating cargo and CHANGELOG --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c5fbf4db..c6c9d81ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 7.1.0 - Sept X, 2022 + +- bump `rust-bitcoin` to 0.29.1 + # 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..1a379c8b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miniscript" -version = "7.0.0" +version = "7.1.0" authors = ["Andrew Poelstra , Sanket Kanjalkar "] license = "CC0-1.0" homepage = "https://github.com/rust-bitcoin/rust-miniscript/" From 5f55f485fd6814c78d6b95aba3cc9a9386c2ab4e Mon Sep 17 00:00:00 2001 From: Jose D Robles Date: Thu, 15 Sep 2022 18:35:13 +0200 Subject: [PATCH 2/3] Add new changes --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6c9d81ef..b16ef494d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ # 7.1.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 From 9aa3772985d8cba00059fb0beb5abd484b4144a4 Mon Sep 17 00:00:00 2001 From: Jose D Robles Date: Fri, 16 Sep 2022 06:03:37 +0200 Subject: [PATCH 3/3] Using 8.0.0 version --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b16ef494d..09e969e32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 7.1.0 - Sept X, 2022 +# 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. diff --git a/Cargo.toml b/Cargo.toml index 1a379c8b8..6371d799b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miniscript" -version = "7.1.0" +version = "8.0.0" authors = ["Andrew Poelstra , Sanket Kanjalkar "] license = "CC0-1.0" homepage = "https://github.com/rust-bitcoin/rust-miniscript/"