Merge rust-bitcoin/rust-secp256k1#672: release 0.28.1
0ed5a55829
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: utACK0ed5a55829
Kixunil: ACK0ed5a55829
Tree-SHA512: 6d54acce52acc03d09272a20242e9a086783e471153d77d10f21bf8924595d43717fd85e8aa4a9b7075c93a04ad88404377e06ca5200b1c9b45c08c01d6f77a8
This commit is contained in:
commit
a771f6c722
|
@ -1,3 +1,8 @@
|
||||||
|
# 0.28.1 - 2024-01-03
|
||||||
|
|
||||||
|
* 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))
|
||||||
|
* 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)
|
||||||
|
|
||||||
# 0.28.0 - 2023-10-23
|
# 0.28.0 - 2023-10-23
|
||||||
|
|
||||||
* Add bindings to the ElligatorSwift implementation [#627](https://github.com/rust-bitcoin/rust-secp256k1/pull/627)
|
* Add bindings to the ElligatorSwift implementation [#627](https://github.com/rust-bitcoin/rust-secp256k1/pull/627)
|
||||||
|
|
|
@ -257,7 +257,7 @@ checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "secp256k1"
|
name = "secp256k1"
|
||||||
version = "0.28.0"
|
version = "0.28.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bincode",
|
"bincode",
|
||||||
"bitcoin_hashes",
|
"bitcoin_hashes",
|
||||||
|
|
|
@ -178,7 +178,7 @@ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "secp256k1"
|
name = "secp256k1"
|
||||||
version = "0.28.0"
|
version = "0.28.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bincode",
|
"bincode",
|
||||||
"bitcoin_hashes",
|
"bitcoin_hashes",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "secp256k1"
|
name = "secp256k1"
|
||||||
version = "0.28.0"
|
version = "0.28.1"
|
||||||
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>",
|
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>",
|
||||||
"Andrew Poelstra <apoelstra@wpsoftware.net>" ]
|
"Andrew Poelstra <apoelstra@wpsoftware.net>" ]
|
||||||
license = "CC0-1.0"
|
license = "CC0-1.0"
|
||||||
|
@ -35,7 +35,7 @@ global-context = ["std"]
|
||||||
global-context-less-secure = ["global-context"]
|
global-context-less-secure = ["global-context"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
secp256k1-sys = { version = "0.9.1", default-features = false, path = "./secp256k1-sys" }
|
secp256k1-sys = { version = "0.9.2", default-features = false, path = "./secp256k1-sys" }
|
||||||
serde = { version = "1.0.103", default-features = false, optional = true }
|
serde = { version = "1.0.103", default-features = false, optional = true }
|
||||||
|
|
||||||
# You likely only want to enable these if you explicitly do not want to use "std", otherwise enable
|
# You likely only want to enable these if you explicitly do not want to use "std", otherwise enable
|
||||||
|
|
Loading…
Reference in New Issue