Skip to content

Commit fdb4135

Browse files
authored
k256 v0.9.5 (#383)
1 parent 938fbad commit fdb4135

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

k256/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.9.5 (2021-07-18)
8+
### Changed
9+
- Optimize ECDSA using linear combination of points ([#380])
10+
11+
[#380]: https://github.com/RustCrypto/elliptic-curves/pull/380
12+
713
## 0.9.4 (2021-06-23)
814
### Added
915
- Derive `Clone` for `ecdsa::SigningKey` ([#374])

k256/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ signing/verification (including Ethereum-style signatures with public-key
66
recovery), Elliptic Curve Diffie-Hellman (ECDH), and general purpose secp256k1
77
curve arithmetic useful for implementing arbitrary group-based protocols.
88
"""
9-
version = "0.9.4" # Also update html_root_url in lib.rs when bumping this
9+
version = "0.9.5" # Also update html_root_url in lib.rs when bumping this
1010
authors = ["RustCrypto Developers"]
1111
license = "Apache-2.0 OR MIT"
1212
documentation = "https://docs.rs/elliptic-curve"

k256/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
#![doc(
4545
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
4646
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
47-
html_root_url = "https://docs.rs/k256/0.9.4"
47+
html_root_url = "https://docs.rs/k256/0.9.5"
4848
)]
4949
#![forbid(unsafe_code)]
5050
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]

0 commit comments

Comments
 (0)