From a92a63081b241b73909be73d0a9674c23433bbf4 Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Mon, 8 Jul 2019 13:57:52 +0000 Subject: [PATCH] bump version to 0.14.0 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b46929c..e351f35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.14.0 - 2019-07-08 + +* [Feature-gate endormorphism optimization](https://github.com/rust-bitcoin/rust-secp256k1/pull/120) + because of a lack of clarity with respect to patents +* Got full no-std support including eliminating all use of libc in C bindings. + [PR 1](https://github.com/rust-bitcoin/rust-secp256k1/pull/115) + [PR 2](https://github.com/rust-bitcoin/rust-secp256k1/pull/125). + This library should be usable in bare-metal environments and with rust-wasm. + Thanks to Elichai Turkel for driving this forward! + # 0.13.0 - 2019-05-21 * Update minimum supported rust compiler 1.22. diff --git a/Cargo.toml b/Cargo.toml index 5f2bc5b..380f73b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "secp256k1" -version = "0.13.0" +version = "0.14.0" authors = [ "Dawid Ciężarkiewicz ", "Andrew Poelstra " ] license = "CC0-1.0"