From ce7b03952b0b4b8adeadb93e43848455d49df41d Mon Sep 17 00:00:00 2001 From: Jonas Nick Date: Tue, 21 May 2019 18:15:07 +0000 Subject: [PATCH] Bump version to 0.13.0 --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52305af..b46929c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 * Fuzzer bug fix diff --git a/Cargo.toml b/Cargo.toml index c7c876e..6325e31 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "secp256k1" -version = "0.12.2" +version = "0.13.0" authors = [ "Dawid Ciężarkiewicz ", "Andrew Poelstra " ] license = "CC0-1.0"