Skip to content

Commit

Permalink
primeorder v0.13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Nov 2, 2023
1 parent e77b798 commit 1a2b9c8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 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.

4 changes: 2 additions & 2 deletions p521/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ sha2 = { version = "0.10", optional = true, default-features = false }

# optional dependencies
hex-literal = { version = "0.4", optional = true }
primeorder = { version = "0.13.1", optional = true, path = "../primeorder" }
primeorder = { version = "0.13.3", optional = true, path = "../primeorder" }
base16ct = "0.2.0"

[dev-dependencies]
hex-literal = "0.4"
primeorder = { version = "0.13", features = ["dev"], path = "../primeorder" }
primeorder = { version = "0.13.3", features = ["dev"], path = "../primeorder" }

[features]
default = ["pem", "std"]
Expand Down
10 changes: 10 additions & 0 deletions primeorder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ 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.13.3 (2023-11-02)
### Added
- Inline annotations on `conditional_select` ([#942])

### Changed
- Support field elements larger than 64-bytes in `impl_projective_arithmetic_tests!` ([#951])

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

## 0.13.2 (2023-05-29)
### Changed
- Improve decoding performance for uncompressed SEC1 points ([#891])
Expand Down
2 changes: 1 addition & 1 deletion primeorder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "primeorder"
version = "0.13.2"
version = "0.13.3"
description = """
Pure Rust implementation of complete addition formulas for prime order elliptic
curves (Renes-Costello-Batina 2015). Generic over field elements and curve
Expand Down

0 comments on commit 1a2b9c8

Please sign in to comment.