Bump version to 0.13.0

This commit is contained in:
Jonas Nick 2019-05-21 18:15:07 +00:00
parent 0bf88fe444
commit ce7b03952b
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,14 @@
# 0.13.0 - 2019-05-21
* Update minimum supported rust compiler 1.22.
* Replace `serialize_der` function with `SerializedSignature` struct.
* Allow building without a standard library (`no_std`). `std` feature is on by default.
* Add human readable serialization to `Signatures` and `SecretKeys`.
* Stop displaying 0 bytes if a `Signature` is less than 72 bytes.
* Only compile recovery module if feature `recovery` is set (non-default).
* Updat `rand` dependency from 0.4 to 0.6 and add `rand_core` 0.4 dependency.
* Relax `cc` dependency requirements.
# 0.12.2 - 2019-01-18 # 0.12.2 - 2019-01-18
* Fuzzer bug fix * Fuzzer bug fix

View File

@ -1,7 +1,7 @@
[package] [package]
name = "secp256k1" name = "secp256k1"
version = "0.12.2" version = "0.13.0"
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"