From a5918c615a8421be7ce566a46d2726f28da2aa10 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 29 Jun 2022 10:55:44 +1000 Subject: [PATCH 1/2] Posthumously add changelog entry for 0.23.2 We did a quick point release but omitted the changelog entry, lets add it posthumously for completeness. --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 910138d..8e2c7a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.23.2 - 2022-06-27 + +* [Move `cbor` to dev-dependencies](https://github.com/rust-bitcoin/rust-secp256k1/pull/461) +* [Derive `Hash` for `RecoverableSignature`](https://github.com/rust-bitcoin/rust-secp256k1/pull/462) + # 0.23.1 - 2022-06-24 [Enable "rand/std_rng" feature](https://github.com/rust-bitcoin/rust-secp256k1/pull/460) when the crate's "rnd-std" feature is enabled. From 580aba82d09db6026e48be416c4ad00834feb240 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 29 Jun 2022 10:58:25 +1000 Subject: [PATCH 2/2] Bump version to v0.23.2 A couple of quick fixes where merged over the last two days, bump the version ready to do a point release. Add changelog entry also. --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e2c7a5..a9cbe6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.23.3 - 2022-06-29 + +* [Add must_use for mut self key manipulation methods](https://github.com/rust-bitcoin/rust-secp256k1/pull/465) +* [Fix fuzzing feature guard](https://github.com/rust-bitcoin/rust-secp256k1/pull/466) + # 0.23.2 - 2022-06-27 * [Move `cbor` to dev-dependencies](https://github.com/rust-bitcoin/rust-secp256k1/pull/461) diff --git a/Cargo.toml b/Cargo.toml index 0d65095..03af3d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secp256k1" -version = "0.23.2" +version = "0.23.3" authors = [ "Dawid Ciężarkiewicz ", "Andrew Poelstra " ] license = "CC0-1.0"