Skip to content

Commit 049d1fc

Browse files
authored
elliptic-curve v0.14.1 (#2469)
## Added - `BatchInvert::batch_invert_in_place_vartime` (#2468) - `BatchNormalize::batch_normalize_vartime` (#2468)
1 parent 2586aef commit 049d1fc

3 files changed

Lines changed: 12 additions & 5 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

elliptic-curve/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ 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.14.1 (2026-06-28)
8+
### Added
9+
- `BatchInvert::batch_invert_in_place_vartime` ([#2468])
10+
- `BatchNormalize::batch_normalize_vartime` ([#2468])
11+
12+
[#2468]: https://github.com/RustCrypto/traits/pull/2468
13+
714
## 0.14.0 (2026-06-23)
815
### Added
916
- Implement `PartialEq + Eq` for `NonIdentity` and `NonZeroScalar` ([#1834])

elliptic-curve/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "elliptic-curve"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"
@@ -16,7 +16,7 @@ representing various elliptic curve forms, scalars, points, and public/secret ke
1616
"""
1717

1818
[dependencies]
19-
array = { package = "hybrid-array", version = "0.4", default-features = false, features = ["zeroize"] }
19+
array = { package = "hybrid-array", version = "0.4.13", default-features = false, features = ["zeroize"] }
2020
bigint = { package = "crypto-bigint", version = "0.7.5", default-features = false, features = ["hybrid-array", "rand_core", "subtle", "zeroize"] }
2121
base16ct = "1"
2222
common = { package = "crypto-common", version = "0.2", features = ["rand_core"] }

0 commit comments

Comments
 (0)