mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
curve,ed,x: Bump patch version to reflect fix to nightly SIMD build (#621)
This commit is contained in:
parent
ff1c309b23
commit
4ac84dd066
6 changed files with 15 additions and 3 deletions
|
|
@ -5,6 +5,10 @@ major series.
|
|||
|
||||
## 4.x series
|
||||
|
||||
### 4.1.2
|
||||
|
||||
* Fix nightly SIMD build
|
||||
|
||||
### 4.1.1
|
||||
|
||||
* Mark `constants::BASEPOINT_ORDER` deprecated from pub API
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ name = "curve25519-dalek"
|
|||
# - update CHANGELOG
|
||||
# - update README if required by semver
|
||||
# - if README was updated, also update module documentation in src/lib.rs
|
||||
version = "4.1.1"
|
||||
version = "4.1.2"
|
||||
edition = "2021"
|
||||
rust-version = "1.60.0"
|
||||
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
|
||||
|
|
|
|||
|
|
@ -10,6 +10,10 @@ Entries are listed in reverse chronological order per undeprecated major series.
|
|||
|
||||
# 2.x series
|
||||
|
||||
## 2.1.1
|
||||
|
||||
* Fix nightly SIMD build
|
||||
|
||||
## 2.1.0
|
||||
|
||||
* Add `SigningKey::to_scalar_bytes` for getting the unclamped scalar from a signing key
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ed25519-dalek"
|
||||
version = "2.1.0"
|
||||
version = "2.1.1"
|
||||
edition = "2021"
|
||||
authors = [
|
||||
"isis lovecruft <isis@patternsinthevoid.net>",
|
||||
|
|
|
|||
|
|
@ -6,6 +6,10 @@ Entries are listed in reverse chronological order.
|
|||
|
||||
* Note: All `x255919-dalek` 2.x releases are in sync with the underlying `curve25519-dalek` 4.x releases.
|
||||
|
||||
## 2.0.1
|
||||
|
||||
* Fix nightly SIMD build
|
||||
|
||||
## 2.0.0-rc.3
|
||||
|
||||
* `StaticSecret` serialization and `to_bytes()` no longer returns clamped integers. Clamping is still always done during scalar-point multiplication.
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||
# - update html_root_url
|
||||
# - update CHANGELOG
|
||||
# - if any changes were made to README.md, mirror them in src/lib.rs docs
|
||||
version = "2.0.0"
|
||||
version = "2.0.1"
|
||||
authors = [
|
||||
"Isis Lovecruft <isis@patternsinthevoid.net>",
|
||||
"DebugSteven <debugsteven@gmail.com>",
|
||||
|
|
|
|||
Loading…
Reference in a new issue