diff --git a/frost-core/CHANGELOG.md b/frost-core/CHANGELOG.md index 5255abc0..4eb65db0 100644 --- a/frost-core/CHANGELOG.md +++ b/frost-core/CHANGELOG.md @@ -4,9 +4,11 @@ Entries are listed in reverse chronological order. ## Unreleased -## 0.1.1 +## 0.2.0 -* Implement Zeroize where needed or skip where not needed (fixes compiling error) +* Implement Zeroize where needed or skip where not needed (fixes compiling error) (#301) +* Change keygen_with_dealer() to return a HashMap (#288) +* Re-export the frost-core traits and rand-core as part of top-level impls API (#297) ## 0.1.0 diff --git a/frost-core/Cargo.toml b/frost-core/Cargo.toml index caf3aa8f..d12a618f 100644 --- a/frost-core/Cargo.toml +++ b/frost-core/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" # When releasing to crates.io: # - Update CHANGELOG.md # - Create git tag. -version = "0.1.1" +version = "0.2.0" authors = ["Deirdre Connolly ", "Chelsea Komlo ", "Conrado Gouvea "] readme = "README.md" license = "MIT OR Apache-2.0" diff --git a/frost-ed25519/Cargo.toml b/frost-ed25519/Cargo.toml index 906bd592..4f5ed56e 100644 --- a/frost-ed25519/Cargo.toml +++ b/frost-ed25519/Cargo.toml @@ -23,7 +23,7 @@ features = ["nightly"] [dependencies] curve25519-dalek = { version = "=4.0.0-rc.2", features = ["serde", "rand_core"] } -frost-core = { path = "../frost-core", version = "0.1.0", features = ["test-impl"] } +frost-core = { path = "../frost-core", version = "0.2.0", features = ["test-impl"] } rand_core = "0.6" sha2 = "0.10.2" diff --git a/frost-ed448/Cargo.toml b/frost-ed448/Cargo.toml index 5b40f837..5215a238 100644 --- a/frost-ed448/Cargo.toml +++ b/frost-ed448/Cargo.toml @@ -22,7 +22,7 @@ features = ["nightly"] [dependencies] ed448-goldilocks = { version = "0.9.0" } -frost-core = { path = "../frost-core", version = "0.1.0", features = ["test-impl"] } +frost-core = { path = "../frost-core", version = "0.2.0", features = ["test-impl"] } rand_core = "0.6" sha3 = "0.10.6" diff --git a/frost-p256/Cargo.toml b/frost-p256/Cargo.toml index d7000282..1f06d42c 100644 --- a/frost-p256/Cargo.toml +++ b/frost-p256/Cargo.toml @@ -23,7 +23,7 @@ features = ["nightly"] [dependencies] p256 = { version = "0.13.0", features = ["hash2curve"] } -frost-core = { path = "../frost-core", version = "0.1.0", features = ["test-impl"] } +frost-core = { path = "../frost-core", version = "0.2.0", features = ["test-impl"] } rand_core = "0.6" sha2 = "0.10.2" diff --git a/frost-rerandomized/Cargo.toml b/frost-rerandomized/Cargo.toml index e8a846c3..b1b6243e 100644 --- a/frost-rerandomized/Cargo.toml +++ b/frost-rerandomized/Cargo.toml @@ -19,7 +19,7 @@ description = "Types and traits to support implementing a re-randomized variant features = ["nightly"] [dependencies] -frost-core = { path = "../frost-core", version = "0.1.0", features = ["internals"] } +frost-core = { path = "../frost-core", version = "0.2.0", features = ["internals"] } rand_core = "0.6" [dev-dependencies] diff --git a/frost-ristretto255/Cargo.toml b/frost-ristretto255/Cargo.toml index 0f097288..0fa4e9ee 100644 --- a/frost-ristretto255/Cargo.toml +++ b/frost-ristretto255/Cargo.toml @@ -19,7 +19,7 @@ features = ["nightly"] [dependencies] curve25519-dalek = { version = "=4.0.0-rc.2", features = ["serde", "rand_core"] } -frost-core = { path = "../frost-core", version = "0.1.0", features = ["test-impl"] } +frost-core = { path = "../frost-core", version = "0.2.0", features = ["test-impl"] } rand_core = "0.6" sha2 = "0.10.2" diff --git a/frost-secp256k1/Cargo.toml b/frost-secp256k1/Cargo.toml index 68ca6492..af90cd7a 100644 --- a/frost-secp256k1/Cargo.toml +++ b/frost-secp256k1/Cargo.toml @@ -21,7 +21,7 @@ description = "A Schnorr signature scheme over the prime-order Ristretto group t features = ["nightly"] [dependencies] -frost-core = { path = "../frost-core", version = "0.1.0", features = ["test-impl"] } +frost-core = { path = "../frost-core", version = "0.2.0", features = ["test-impl"] } k256 = { version = "0.13.0", features = ["arithmetic", "expose-field", "hash2curve"] } rand_core = "0.6" sha2 = "0.10.2"