Skip to content

Commit

Permalink
Merge #750: release secp256k1 0.30.0
Browse files Browse the repository at this point in the history
228f98e release secp256k1 0.30.0 (Andrew Poelstra)

Pull request description:

  We could release a new secp256k1-sys at the same time, but we have made no changes there except to delete a bit of unused code in #735, and bump MSRV, so it does not seem worth the extra disruption.

ACKs for top commit:
  tcharding:
    ACK 228f98e

Tree-SHA512: af3d091f8a1a8efa0e38e7d45504b5ccabc73b783a15f26102c92e7a83d1048df27a14e64aae079b523c66004eb9b0ff33495763743b5d18762bc3dfcda00fbd
  • Loading branch information
apoelstra committed Oct 9, 2024
2 parents 3e37adb + 228f98e commit 379e128
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 0.30.0 - 2024-10-08

* Allow signing variable-length messages [#706](https://github.com/rust-bitcoin/rust-secp256k1/pull/706)
* Bump MSRV to 1.63 [#709](https://github.com/rust-bitcoin/rust-secp256k1/pull/709)
* Deprecate `Message::from_digest_slice` in favor of `Message::from_digest` [#712](https://github.com/rust-bitcoin/rust-secp256k1/pull/712)
* Truncate debug output of `SecretKey`; tighten `bitcoin_hashes` dependency version [#722](https://github.com/rust-bitcoin/rust-secp256k1/pull/722)
* Simplify and improve consistency of secret key types' debug output [#726](https://github.com/rust-bitcoin/rust-secp256k1/pull/726)
* Simplify and improve consistency of public key types' debug output [#745](https://github.com/rust-bitcoin/rust-secp256k1/pull/745)
* Feature-gate `KeyPair::from_str` on `global-context` or `alloc` [#728](https://github.com/rust-bitcoin/rust-secp256k1/pull/728)
* Add infallible constructors for `schnorr::Signature` from byteslices [#730](https://github.com/rust-bitcoin/rust-secp256k1/pull/730)
* Deprecate slice-parsing methods in favor of array-parsing ones [#737](https://github.com/rust-bitcoin/rust-secp256k1/pull/737)
* Make `RecoveryId` an enum rather than integer [#743](https://github.com/rust-bitcoin/rust-secp256k1/pull/743)

# 0.29.0 - 2024-04-02

* Deprecate `ThirtyTwoByteHash` [#686](https://github.com/rust-bitcoin/rust-secp256k1/pull/686)
Expand Down
2 changes: 1 addition & 1 deletion Cargo-minimal.lock
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"

[[package]]
name = "secp256k1"
version = "0.29.0"
version = "0.30.0"
dependencies = [
"bincode",
"bitcoin_hashes",
Expand Down
2 changes: 1 addition & 1 deletion Cargo-recent.lock
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"

[[package]]
name = "secp256k1"
version = "0.29.0"
version = "0.30.0"
dependencies = [
"bincode",
"bitcoin_hashes",
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secp256k1"
version = "0.29.0"
version = "0.30.0"
authors = [ "Dawid Ciężarkiewicz <[email protected]>",
"Andrew Poelstra <[email protected]>" ]
license = "CC0-1.0"
Expand Down

0 comments on commit 379e128

Please sign in to comment.