From 1827283d72bc8be4d805ceb1ecde617585094d77 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 18 Jul 2021 07:54:57 -0700 Subject: [PATCH] k256 v0.9.5 --- Cargo.lock | 2 +- k256/CHANGELOG.md | 6 ++++++ k256/Cargo.toml | 2 +- k256/src/lib.rs | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f8abdceb5..183ff06c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -464,7 +464,7 @@ dependencies = [ [[package]] name = "k256" -version = "0.9.4" +version = "0.9.5" dependencies = [ "cfg-if", "criterion", diff --git a/k256/CHANGELOG.md b/k256/CHANGELOG.md index 24c1142d2..0ee7c6956 100644 --- a/k256/CHANGELOG.md +++ b/k256/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.9.5 (2021-07-18) +### Changed +- Optimize ECDSA using linear combination of points ([#380]) + +[#380]: https://github.com/RustCrypto/elliptic-curves/pull/380 + ## 0.9.4 (2021-06-23) ### Added - Derive `Clone` for `ecdsa::SigningKey` ([#374]) diff --git a/k256/Cargo.toml b/k256/Cargo.toml index 7a54f9353..fa6044303 100644 --- a/k256/Cargo.toml +++ b/k256/Cargo.toml @@ -6,7 +6,7 @@ signing/verification (including Ethereum-style signatures with public-key recovery), Elliptic Curve Diffie-Hellman (ECDH), and general purpose secp256k1 curve arithmetic useful for implementing arbitrary group-based protocols. """ -version = "0.9.4" # Also update html_root_url in lib.rs when bumping this +version = "0.9.5" # Also update html_root_url in lib.rs when bumping this authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" documentation = "https://docs.rs/elliptic-curve" diff --git a/k256/src/lib.rs b/k256/src/lib.rs index b45af6d85..52abad8b5 100644 --- a/k256/src/lib.rs +++ b/k256/src/lib.rs @@ -44,7 +44,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", - html_root_url = "https://docs.rs/k256/0.9.4" + html_root_url = "https://docs.rs/k256/0.9.5" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms, unused_qualifications)]