From ac4b51efe7cc89d6ab1ba15eca9829d9a807ff1b Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 14 Mar 2022 14:47:23 -0600 Subject: [PATCH] k256: add v0.10.3 release notes (#532) This release backports #530. Since `master` is already v0.11 prereleases, this commit just contains the release notes. The released code can be found via the `k256/v0.10.3` tag: https://github.com/RustCrypto/elliptic-curves/tree/k256/v0.10.3 --- k256/CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/k256/CHANGELOG.md b/k256/CHANGELOG.md index f9196cca..c17b74af 100644 --- a/k256/CHANGELOG.md +++ b/k256/CHANGELOG.md @@ -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])