File tree 4 files changed +16
-3
lines changed
4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change
1
+ # 0.30.0 - 2024-10-08
2
+
3
+ * Allow signing variable-length messages [ #706 ] ( https://github.com/rust-bitcoin/rust-secp256k1/pull/706 )
4
+ * Bump MSRV to 1.63 [ #709 ] ( https://github.com/rust-bitcoin/rust-secp256k1/pull/709 )
5
+ * Deprecate ` Message::from_digest_slice ` in favor of ` Message::from_digest ` [ #712 ] ( https://github.com/rust-bitcoin/rust-secp256k1/pull/712 )
6
+ * Truncate debug output of ` SecretKey ` ; tighten ` bitcoin_hashes ` dependency version [ #722 ] ( https://github.com/rust-bitcoin/rust-secp256k1/pull/722 )
7
+ * Simplify and improve consistency of secret key types' debug output [ #726 ] ( https://github.com/rust-bitcoin/rust-secp256k1/pull/726 )
8
+ * Simplify and improve consistency of public key types' debug output [ #745 ] ( https://github.com/rust-bitcoin/rust-secp256k1/pull/745 )
9
+ * Feature-gate ` KeyPair::from_str ` on ` global-context ` or ` alloc ` [ #728 ] ( https://github.com/rust-bitcoin/rust-secp256k1/pull/728 )
10
+ * Add infallible constructors for ` schnorr::Signature ` from byteslices [ #730 ] ( https://github.com/rust-bitcoin/rust-secp256k1/pull/730 )
11
+ * Deprecate slice-parsing methods in favor of array-parsing ones [ #737 ] ( https://github.com/rust-bitcoin/rust-secp256k1/pull/737 )
12
+ * Make ` RecoveryId ` an enum rather than integer [ #743 ] ( https://github.com/rust-bitcoin/rust-secp256k1/pull/743 )
13
+
1
14
# 0.29.0 - 2024-04-02
2
15
3
16
* Deprecate ` ThirtyTwoByteHash ` [ #686 ] ( https://github.com/rust-bitcoin/rust-secp256k1/pull/686 )
Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
272
272
273
273
[[package]]
274
274
name = "secp256k1"
275
- version = "0.29 .0"
275
+ version = "0.30 .0"
276
276
dependencies = [
277
277
"bincode",
278
278
"bitcoin_hashes",
Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
193
193
194
194
[[package]]
195
195
name = "secp256k1"
196
- version = "0.29 .0"
196
+ version = "0.30 .0"
197
197
dependencies = [
198
198
"bincode",
199
199
"bitcoin_hashes",
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " secp256k1"
3
- version = " 0.29 .0"
3
+ version = " 0.30 .0"
4
4
authors = [
" Dawid Ciężarkiewicz <[email protected] >" ,
5
5
" Andrew Poelstra <[email protected] >" ]
6
6
license = " CC0-1.0"
You can’t perform that action at this time.
0 commit comments