Skip to content

Commit 452f702

Browse files
authored
k256 v0.5.6 (#215)
1 parent 31df708 commit 452f702

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

k256/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ 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.5.5 (202-09-27)
7+
## 0.5.6 (2020-09-28)
8+
### Added
9+
- Enable `endomorphism-mul` optimizations by default ([#213])
10+
11+
[#213]: https://github.com/RustCrypto/elliptic-curves/pull/213
12+
13+
## 0.5.5 (2020-09-27)
814
### Added
915
- Impl `FromEncodedPoint` for `ProjectivePoint` ([#210])
1016
- Impl `ToEncodedPoint` for `ecdsa::VerifyKey` ([#209])

k256/Cargo.toml

Lines changed: 1 addition & 1 deletion
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 curve
77
arithmetic which can be used to implement arbitrary group-based protocols.
88
"""
9-
version = "0.5.5"
9+
version = "0.5.6"
1010
authors = ["RustCrypto Developers"]
1111
license = "Apache-2.0 OR MIT"
1212
documentation = "https://docs.rs/elliptic-curve"

k256/src/lib.rs

Lines changed: 1 addition & 1 deletion
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.5.5"
47+
html_root_url = "https://docs.rs/k256/0.5.6"
4848
)]
4949
#![forbid(unsafe_code)]
5050
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]

0 commit comments

Comments
 (0)