From 3226b78149c6802a63e92ae1373f9c2fd6ee379f Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 28 Jun 2026 20:48:08 -0600 Subject: [PATCH] elliptic-curve v0.14.1 --- Cargo.lock | 6 +++--- elliptic-curve/CHANGELOG.md | 7 +++++++ elliptic-curve/Cargo.toml | 4 ++-- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1f2cab327..e24b31596 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -200,7 +200,7 @@ dependencies = [ [[package]] name = "elliptic-curve" -version = "0.14.0" +version = "0.14.1" dependencies = [ "base16ct", "crypto-bigint", @@ -314,9 +314,9 @@ dependencies = [ [[package]] name = "hybrid-array" -version = "0.4.12" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da" +checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c" dependencies = [ "subtle", "typenum", diff --git a/elliptic-curve/CHANGELOG.md b/elliptic-curve/CHANGELOG.md index 3a93d5e2e..02af732e8 100644 --- a/elliptic-curve/CHANGELOG.md +++ b/elliptic-curve/CHANGELOG.md @@ -4,6 +4,13 @@ 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.14.1 (2026-06-28) +### Added +- `BatchInvert::batch_invert_in_place_vartime` ([#2468]) +- `BatchNormalize::batch_normalize_vartime` ([#2468]) + +[#2468]: https://github.com/RustCrypto/traits/pull/2468 + ## 0.14.0 (2026-06-23) ### Added - Implement `PartialEq + Eq` for `NonIdentity` and `NonZeroScalar` ([#1834]) diff --git a/elliptic-curve/Cargo.toml b/elliptic-curve/Cargo.toml index db14ca36f..6c78670f0 100644 --- a/elliptic-curve/Cargo.toml +++ b/elliptic-curve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elliptic-curve" -version = "0.14.0" +version = "0.14.1" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" @@ -16,7 +16,7 @@ representing various elliptic curve forms, scalars, points, and public/secret ke """ [dependencies] -array = { package = "hybrid-array", version = "0.4", default-features = false, features = ["zeroize"] } +array = { package = "hybrid-array", version = "0.4.13", default-features = false, features = ["zeroize"] } bigint = { package = "crypto-bigint", version = "0.7.5", default-features = false, features = ["hybrid-array", "rand_core", "subtle", "zeroize"] } base16ct = "1" common = { package = "crypto-common", version = "0.2", features = ["rand_core"] }