Skip to content

Commit a771f6c

Browse files
committed
Merge #672: release 0.28.1
0ed5a55 release 0.28.1 (Andrew Poelstra) Pull request description: We need a new rust-secp release to deal with the new rust-secp-sys release. ACKs for top commit: sanket1729: utACK 0ed5a55 Kixunil: ACK 0ed5a55 Tree-SHA512: 6d54acce52acc03d09272a20242e9a086783e471153d77d10f21bf8924595d43717fd85e8aa4a9b7075c93a04ad88404377e06ca5200b1c9b45c08c01d6f77a8
2 parents 60a5e36 + 0ed5a55 commit a771f6c

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.28.1 - 2024-01-03
2+
3+
* Update secp265k1-sys to 0.9.2 (contains some fixes for WASM and [a FFI binding fix](https://github.com/rust-bitcoin/rust-secp256k1/pull/6700))
4+
* Various improvements to the `SerializedSignature` type [#658](https://github.com/rust-bitcoin/rust-secp256k1/pull/658) [#659](https://github.com/rust-bitcoin/rust-secp256k1/pull/659)
5+
16
# 0.28.0 - 2023-10-23
27

38
* Add bindings to the ElligatorSwift implementation [#627](https://github.com/rust-bitcoin/rust-secp256k1/pull/627)

Cargo-minimal.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
257257

258258
[[package]]
259259
name = "secp256k1"
260-
version = "0.28.0"
260+
version = "0.28.1"
261261
dependencies = [
262262
"bincode",
263263
"bitcoin_hashes",

Cargo-recent.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
178178

179179
[[package]]
180180
name = "secp256k1"
181-
version = "0.28.0"
181+
version = "0.28.1"
182182
dependencies = [
183183
"bincode",
184184
"bitcoin_hashes",

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secp256k1"
3-
version = "0.28.0"
3+
version = "0.28.1"
44
authors = [ "Dawid Ciężarkiewicz <[email protected]>",
55
"Andrew Poelstra <[email protected]>" ]
66
license = "CC0-1.0"
@@ -35,7 +35,7 @@ global-context = ["std"]
3535
global-context-less-secure = ["global-context"]
3636

3737
[dependencies]
38-
secp256k1-sys = { version = "0.9.1", default-features = false, path = "./secp256k1-sys" }
38+
secp256k1-sys = { version = "0.9.2", default-features = false, path = "./secp256k1-sys" }
3939
serde = { version = "1.0.103", default-features = false, optional = true }
4040

4141
# You likely only want to enable these if you explicitly do not want to use "std", otherwise enable

0 commit comments

Comments
 (0)