Skip to content

Commit 483a0a0

Browse files
authored
k256 v0.10.3 (#517)
1 parent f0f7477 commit 483a0a0

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.10.2 (2022-01-17)
8+
### Added
9+
- hash2curve support: impl `GroupDigest` for `Secp256k1` ([#503])
10+
- `IDENTITY` and `GENERATOR` point constants ([#511])
11+
12+
[#503]: https://github.com/RustCrypto/elliptic-curves/pull/503
13+
[#511]: https://github.com/RustCrypto/elliptic-curves/pull/511
14+
715
## 0.10.1 (2022-01-04)
816
### Added
917
- Impl `ff::Field` trait for `FieldElement` ([#498])

k256/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "k256"
3-
version = "0.10.1" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.10.2" # Also update html_root_url in lib.rs when bumping this
44
description = """
55
secp256k1 elliptic curve library written in pure Rust with support for ECDSA
66
signing/verification (including Ethereum-style signatures with public-key

k256/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#![doc(
55
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
66
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
7-
html_root_url = "https://docs.rs/k256/0.10.1"
7+
html_root_url = "https://docs.rs/k256/0.10.2"
88
)]
99
#![forbid(unsafe_code)]
1010
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]

0 commit comments

Comments
 (0)