From a9b1062c32c9f9f9b15ea97e47fe6b7cba51b868 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 24 Aug 2023 12:45:58 +1000 Subject: [PATCH] WIP: Bump version to v0.28.0 If #645 merges we will need a release of `secp256k1-sys` as well. --- CHANGELOG.md | 8 ++++++-- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d60912ce1..e2fe46964 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ -# Unreleased +# 0.28.0 - 2023-08-24 -* Bump MSRV to 1.48 +* Depend on recent release of `secp2561-sys`. +* Depend on recent release of `bitcoin_hashes` v0.13.0 [#621](https://github.com/rust-bitcoin/rust-secp256k1/pull/621). +* Add a verify function to `PublicKey` [#618](https://github.com/rust-bitcoin/rust-secp256k1/pull/618). +* Add serialize function for schnorr::Signature [#607](https://github.com/rust-bitcoin/rust-secp256k1/pull/607). +* Bump MSRV to 1.48 [#595](https://github.com/rust-bitcoin/rust-secp256k1/pull/595). * Remove implementations of `PartialEq`, `Eq`, `PartialOrd`, `Ord`, and `Hash` from the `impl_array_newtype` macro. Users will now need to derive these traits if they are wanted. diff --git a/Cargo.toml b/Cargo.toml index 5c9564018..961ccf9e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secp256k1" -version = "0.27.0" +version = "0.28.0" authors = [ "Dawid Ciężarkiewicz ", "Andrew Poelstra " ] license = "CC0-1.0"