From 1f327b478ae80e2f074c6a74da00c540f15c17a2 Mon Sep 17 00:00:00 2001 From: elsirion Date: Tue, 25 Oct 2022 20:32:58 +0200 Subject: [PATCH] Bump version number to v0.24.1 We have fixed a bug in `KeyPair` decoding and otherwise didn't change the API. --- CHANGELOG.md | 3 +++ Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 367c6ad45..49a369c06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 0.24.1 - 2022-10-25 + +* [Fix broken deserialization logic of `KeyPair`](https://github.com/rust-bitcoin/rust-secp256k1/issues/491) that previously always panicked. After the patch deserialization only panics if neither the `global-context` nor the `alloc` (default) feature is active. # 0.24.0 - 2022-07-20 diff --git a/Cargo.toml b/Cargo.toml index da343cd3c..7cef32d43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secp256k1" -version = "0.24.0" +version = "0.24.1" authors = [ "Dawid Ciężarkiewicz ", "Andrew Poelstra " ] license = "CC0-1.0"