Skip to content

Commit

Permalink
Bump versions & update changelogs
Browse files Browse the repository at this point in the history
Signed-off-by: Denis Varlakov <[email protected]>
  • Loading branch information
survived committed Jan 30, 2025
1 parent 5a748df commit 651f87e
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 8 deletions.
6 changes: 6 additions & 0 deletions generic-ec-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v0.3.0
* Rename `Samplable` trait into `FromUniformBytes` and change it so it
accepts a uniform byte array instead of `impl RngCore` [#55]

[#55]: https://github.com/LFDT-Lockness/generic-ec/pull/55

## v0.2.3
* Add `NoInvalidPoints` trait [#50]

Expand Down
2 changes: 1 addition & 1 deletion generic-ec-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "generic-ec-core"
version = "0.2.3"
version = "0.3.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/LFDT-Lockness/generic-ec"
Expand Down
5 changes: 5 additions & 0 deletions generic-ec-curves/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v0.3.0
* Update `generic-ec-core` to v0.3 [#55]

[#55]: https://github.com/LFDT-Lockness/generic-ec/pull/55

## v0.2.4
* Implement `NoInvalidPoints` for prime order curves [#50]

Expand Down
4 changes: 2 additions & 2 deletions generic-ec-curves/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "generic-ec-curves"
version = "0.2.4"
version = "0.3.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Elliptic curves for `generic-ec` crate"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/LFDT-Lockness/generic-ec"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
generic-ec-core = { version = "0.2.3", path = "../generic-ec-core", default-features = false }
generic-ec-core = { version = "0.3.0", path = "../generic-ec-core", default-features = false }

subtle.workspace = true
rand_core.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions generic-ec-zkp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v0.5.0
* Update `generic_ec` dep to v0.5 [#55]

[#55]: https://github.com/LFDT-Lockness/generic-ec/pull/55

## v0.4.4
* Add `dlog_eq` proof [#54]

Expand Down
4 changes: 2 additions & 2 deletions generic-ec-zkp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "generic-ec-zkp"
version = "0.4.4"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/LFDT-Lockness/generic-ec"
Expand All @@ -12,7 +12,7 @@ keywords = ["elliptic-curves", "zk-proof"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
generic-ec = { version = "0.4.0", path = "../generic-ec", default-features = false }
generic-ec = { version = "0.5.0", path = "../generic-ec", default-features = false }
digest = { workspace = true, optional = true }
udigest = { workspace = true, features = ["derive"], optional = true }

Expand Down
8 changes: 8 additions & 0 deletions generic-ec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## v0.5.0
* Hash to scalar: guarantee reproducibility on all platforms [#55]
* Use reproducible & constant-time algorithm for random scalar
generation [#55]
* Update `generic-ec-core` & `generic-ec-curves` to v0.3 [#55]

[#55]: https://github.com/LFDT-Lockness/generic-ec/pull/55

## v0.4.5
* Add curve-specific aliases (see `generic_ec::curves::{secp256k1, secp256r1, stark, ed25519}::*`) [#52]
* Implement infallible `FromRaw` for `Point<E>` conversion for prime order curves
Expand Down
6 changes: 3 additions & 3 deletions generic-ec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "generic-ec"
version = "0.4.5"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/LFDT-Lockness/generic-ec"
Expand All @@ -13,8 +13,8 @@ keywords = ["elliptic-curves"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
generic-ec-core = { version = "0.2.3", path = "../generic-ec-core" }
generic-ec-curves = { version = "0.2.4", path = "../generic-ec-curves", optional = true }
generic-ec-core = { version = "0.3.0", path = "../generic-ec-core" }
generic-ec-curves = { version = "0.3.0", path = "../generic-ec-curves", optional = true }
udigest = { workspace = true, features = ["derive"], optional = true }

subtle.workspace = true
Expand Down

0 comments on commit 651f87e

Please sign in to comment.