Merge pull request #305 from apoelstra/2021-06--0.20.3
bump version to 0.20.3
This commit is contained in:
commit
a1705e3f9d
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,4 +1,14 @@
|
||||||
|
|
||||||
|
# 0.20.3 - 2021-06-10
|
||||||
|
|
||||||
|
* Fix [`SecretKey` validation in `from_str`](https://github.com/rust-bitcoin/rust-secp256k1/pull/296)
|
||||||
|
* Add [`global-context-less-secure` feature](https://github.com/rust-bitcoin/rust-secp256k1/pull/279) which creates a non-randomized global context (and does not require `rand` or `std`)
|
||||||
|
* Add [`schnorrsig::KeyPair::from_secret_key` convenience function](https://github.com/rust-bitcoin/rust-secp256k1/pull/294)
|
||||||
|
* Add [`combine_keys` function to `PublicKey`](https://github.com/rust-bitcoin/rust-secp256k1/pull/291)
|
||||||
|
* [Reduce symbol visibility in C compilation to allow LTO to work](https://github.com/rust-bitcoin/rust-secp256k1/pull/289)
|
||||||
|
* Add [`alloc` feature](https://github.com/rust-bitcoin/rust-secp256k1/pull/300) **requiring rustc 1.36+** to enable context creation without std
|
||||||
|
* [Rewrite stubbed-out-for-fuzzing version of the library](https://github.com/rust-bitcoin/rust-secp256k1/pull/282) to improve fuzzer accessibility
|
||||||
|
|
||||||
# 0.20.2 - 2021-04-27
|
# 0.20.2 - 2021-04-27
|
||||||
|
|
||||||
* Fix some WASM build issues
|
* Fix some WASM build issues
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "secp256k1"
|
name = "secp256k1"
|
||||||
version = "0.20.2"
|
version = "0.20.3"
|
||||||
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"
|
||||||
|
|
Loading…
Reference in New Issue