bump version to 0.28.2
This commit is contained in:
parent
9bc110b7d2
commit
1a162faf40
|
@ -1,3 +1,9 @@
|
|||
# 0.28.2 - 2024-01-30
|
||||
|
||||
* Implement `Hash` for `Scalar` [#674](https://github.com/rust-bitcoin/rust-secp256k1/pull/674)
|
||||
* Implement `Ord` and `PartialOrd` for `RecoverableSignature` [#611](https://github.com/rust-bitcoin/rust-secp256k1/pull/611)
|
||||
* Add byte accessors to `ElligatorSwiftSharedSecret` [#676](https://github.com/rust-bitcoin/rust-secp256k1/pull/676)
|
||||
|
||||
# 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))
|
||||
|
|
|
@ -257,7 +257,7 @@ checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
|
|||
|
||||
[[package]]
|
||||
name = "secp256k1"
|
||||
version = "0.28.1"
|
||||
version = "0.28.2"
|
||||
dependencies = [
|
||||
"bincode",
|
||||
"bitcoin_hashes",
|
||||
|
|
|
@ -178,7 +178,7 @@ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|||
|
||||
[[package]]
|
||||
name = "secp256k1"
|
||||
version = "0.28.1"
|
||||
version = "0.28.2"
|
||||
dependencies = [
|
||||
"bincode",
|
||||
"bitcoin_hashes",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "secp256k1"
|
||||
version = "0.28.1"
|
||||
version = "0.28.2"
|
||||
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>",
|
||||
"Andrew Poelstra <apoelstra@wpsoftware.net>" ]
|
||||
license = "CC0-1.0"
|
||||
|
|
Loading…
Reference in New Issue