Skip to content

Commit

Permalink
k256 v0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Mar 14, 2022
1 parent 4bb2009 commit d661ea9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions k256/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.10.3 (2022-03-14)
### Fixed
- Do not normalize the argument in `FieldElementImpl::is_odd()` ([#530])

[#530]: https://github.com/RustCrypto/elliptic-curves/pull/530

## 0.10.2 (2022-01-17)
### Added
- hash2curve support: impl `GroupDigest` for `Secp256k1` ([#503])
Expand Down
2 changes: 1 addition & 1 deletion k256/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "k256"
version = "0.10.2" # Also update html_root_url in lib.rs when bumping this
version = "0.10.3" # Also update html_root_url in lib.rs when bumping this
description = """
secp256k1 elliptic curve library written in pure Rust with support for ECDSA
signing/verification (including Ethereum-style signatures with public-key
Expand Down
2 changes: 1 addition & 1 deletion k256/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,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.10.2"
html_root_url = "https://docs.rs/k256/0.10.3"
)]
#![forbid(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
Expand Down

0 comments on commit d661ea9

Please sign in to comment.