From 1dbd7691da9c829d0474c8582245352f5389375b Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 22 Nov 2022 07:00:43 +1100 Subject: [PATCH] secp256k1: Bump crate version to 0.25.0 Add changelog notes and bump the crate version to v0.25.0! --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49a369c06..d1ac1c027 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.25.0 - 2022-11-22 + +* Use type system to [improve safety](https://github.com/rust-bitcoin/rust-secp256k1/pull/483). +* [Change secp256k1-sys symbol names to 0_6_1](https://github.com/rust-bitcoin/rust-secp256k1/pull/490). +* [Introduce `rustfmt`](https://github.com/rust-bitcoin/rust-secp256k1/pull/499) to the codebase. +* [Make all raw pointer methods go through the CPtr trait](https://github.com/rust-bitcoin/rust-secp256k1/pull/507). +* [Make comparison functions stable](https://github.com/rust-bitcoin/rust-secp256k1/pull/518). + # 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. diff --git a/Cargo.toml b/Cargo.toml index 560f3e270..eabf53ce9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secp256k1" -version = "0.24.1" +version = "0.25.0" authors = [ "Dawid Ciężarkiewicz ", "Andrew Poelstra " ] license = "CC0-1.0"