Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

2 changes: 1 addition & 1 deletion p256/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Implement `TryFrom<Scalar>` for `NonZeroScalar` ([#1193])
- `getrandom` feature ([#1521])
- Implement `crypto_common::Generate` trait ([#1586])
- `basepoint-table` feature ([#1789], [#1790], [#1796])
- `precomputed-tables` feature ([#1789], [#1790], [#1796])

### Changed
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1125])
Expand Down
47 changes: 36 additions & 11 deletions p384/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,51 @@ 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.0 (UNRELEASED)
## 0.14.0 (2026-07-06)
### Added
- `EcdsaCurve` trait impls ([#1019])
- Implement `ReduceNonZero` for `p384::Scalar` ([#1148])
- Implement `From<NonZeroScalar>` for `Scalar` ([#1188])
- `getrandom` feature ([#1521])
- `cfg(p384_backend)` with `bigint` and `fiat` options ([#1548], [#1806], [#1808])
- Implement `crypto_common::Generate` trait ([#1586])
- `precomputed-tables` feature ([#1737])

### Changed
- Better `Debug` for field elements ([#798])
- Make `primeorder` dependency optional ([#799])
- Update to `elliptic-curve` v0.14 ([#1011])
- Update to `ecdsa` v0.17 ([#1011])
- Update to `sec1` v0.8 ([#1011])
- Update to `secdect` v0.3 ([#1084])
- Update to `rand_core` v0.9 ([#1125])
- Update to `hybrid-array` v0.3 ([#1125])
- `ecdh` feature no longer enabled-by-default ([#1112])
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1125])
- Relax MSRV policy and allow MSRV bumps in patch releases
- `p384_backend="fiat"` now uses `fiat-crypto` crate ([#1431])
- Bump `sha2` dependency to v0.11 ([#1712])
- Default field backend is now `crypto-bigint` based ([#1808])
- Bump `elliptic-curve` to v0.14 ([#1849])
- Bump `ecdsa` to v0.17 ([#1883])
- Bump `primeorder` v0.14 ([#1887])

### Removed
- `bits` feature ([#1766])
- `expose-field` feature: use `FieldArithmetic` trait instead ([#1834])

[#798]: https://github.com/RustCrypto/elliptic-curves/pull/798
[#799]: https://github.com/RustCrypto/elliptic-curves/pull/799
[#1011]: https://github.com/RustCrypto/elliptic-curves/pull/1011
[#1084]: https://github.com/RustCrypto/elliptic-curves/pull/1084
[#1019]: https://github.com/RustCrypto/elliptic-curves/pull/1019
[#1112]: https://github.com/RustCrypto/elliptic-curves/pull/1112
[#1125]: https://github.com/RustCrypto/elliptic-curves/pull/1125
[#1148]: https://github.com/RustCrypto/elliptic-curves/pull/1148
[#1188]: https://github.com/RustCrypto/elliptic-curves/pull/1188
[#1431]: https://github.com/RustCrypto/elliptic-curves/pull/1431
[#1521]: https://github.com/RustCrypto/elliptic-curves/pull/1521
[#1548]: https://github.com/RustCrypto/elliptic-curves/pull/1548
[#1586]: https://github.com/RustCrypto/elliptic-curves/pull/1586
[#1712]: https://github.com/RustCrypto/elliptic-curves/pull/1712
[#1737]: https://github.com/RustCrypto/elliptic-curves/pull/1737
[#1766]: https://github.com/RustCrypto/elliptic-curves/pull/1766
[#1806]: https://github.com/RustCrypto/elliptic-curves/pull/1806
[#1808]: https://github.com/RustCrypto/elliptic-curves/pull/1808
[#1834]: https://github.com/RustCrypto/elliptic-curves/pull/1834
[#1849]: https://github.com/RustCrypto/elliptic-curves/pull/1849
[#1883]: https://github.com/RustCrypto/elliptic-curves/pull/1883
[#1887]: https://github.com/RustCrypto/elliptic-curves/pull/1887

## 0.13.1 (2025-02-06)
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion p384/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "p384"
version = "0.14.0-rc.15"
version = "0.14.0"
description = """
Pure Rust implementation of the NIST P-384 (a.k.a. secp384r1) elliptic curve
as defined in SP 800-186 with support for ECDH, ECDSA signing/verification,
Expand Down
Loading