Skip to content

Commit 8845cc0

Browse files
authored
k256 v0.5.5 (#212)
1 parent 43de0d6 commit 8845cc0

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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)
8+
### Added
9+
- Impl `FromEncodedPoint` for `ProjectivePoint` ([#210])
10+
- Impl `ToEncodedPoint` for `ecdsa::VerifyKey` ([#209])
11+
12+
[#210]: https://github.com/RustCrypto/elliptic-curves/pull/210
13+
[#209]: https://github.com/RustCrypto/elliptic-curves/pull/209
14+
715
## 0.5.4 (2020-09-27)
816
### Added
917
- Impl `RecoverableSignPrimtive` on `Scalar` ([#206])

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.4"
9+
version = "0.5.5"
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.4"
47+
html_root_url = "https://docs.rs/k256/0.5.5"
4848
)]
4949
#![forbid(unsafe_code)]
5050
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]

0 commit comments

Comments
 (0)