From e6212ab55943ffd04cc4b1cf0ee23cabb7f79a47 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 16 Nov 2023 10:45:28 +1100 Subject: [PATCH] Bump version to 11.0.0 In preparation for doing the next major release, add changelog entries and bump the version. --- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e204a0c6b..0a5680437 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# 11.0.0 - November 16, 2023 + +- Add the planning module [#592](https://github.com/rust-bitcoin/rust-miniscript/pull/592) +- Bump MSRV to 1.48 [#569](https://github.com/rust-bitcoin/rust-miniscript/pull/569) +- Upgrade `rust-bitcoin` to v0.31.0 [#618](https://github.com/rust-bitcoin/rust-miniscript/pull/618) +- Reduce binary bloat by removing generic param from type_check [584](https://github.com/rust-bitcoin/rust-miniscript/pull/584) +- Add height to tap tree [588](https://github.com/rust-bitcoin/rust-miniscript/pull/588) +- Improve `TapTree` API [617](https://github.com/rust-bitcoin/rust-miniscript/pull/617) +- Remove "unstable" feature [482](https://github.com/rust-bitcoin/rust-miniscript/pull/482) +- Remove hashbrown dependency [564](https://github.com/rust-bitcoin/rust-miniscript/pull/564) +- Add method to convert expr_raw_pkh into pkh [557](https://github.com/rust-bitcoin/rust-miniscript/pull/557) +- psbt: Rewrite input replacement to avoid forgetting fields [568](https://github.com/rust-bitcoin/rust-miniscript/pull/568) + # 10.0.0 - May 24, 2023 - Works with rust-bitcoin 0.30.0 diff --git a/Cargo.toml b/Cargo.toml index 734c781f8..efe601179 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miniscript" -version = "10.0.0" +version = "11.0.0" authors = ["Andrew Poelstra , Sanket Kanjalkar "] license = "CC0-1.0" homepage = "https://github.com/rust-bitcoin/rust-miniscript/"