From ad636e80a506ea7d13222f67ee0c71bbbefcc451 Mon Sep 17 00:00:00 2001 From: natalie Date: Fri, 23 Jun 2023 16:38:37 +0100 Subject: [PATCH] Release v0.5.0 (#413) * Update version numbers to v0.5.0 (#412) * Update changelog for release v0.5.0 (#412) * Bump frost-core versions to v0.5.0 in ciphersuites (#412) --- frost-core/CHANGELOG.md | 10 ++++++---- frost-core/Cargo.toml | 2 +- frost-ed25519/Cargo.toml | 4 ++-- frost-ed448/Cargo.toml | 4 ++-- frost-p256/Cargo.toml | 4 ++-- frost-rerandomized/Cargo.toml | 4 ++-- frost-ristretto255/Cargo.toml | 4 ++-- frost-secp256k1/Cargo.toml | 4 ++-- 8 files changed, 19 insertions(+), 17 deletions(-) diff --git a/frost-core/CHANGELOG.md b/frost-core/CHANGELOG.md index aba0ed6..50aba4f 100644 --- a/frost-core/CHANGELOG.md +++ b/frost-core/CHANGELOG.md @@ -4,17 +4,19 @@ Entries are listed in reverse chronological order. ## Unreleased +## 0.6.0 + +## Released + ## 0.5.0 -* add SigningShare type to ciphersuite libraries +* expose SigningShare, VerifyingShare, NonceCommitment and SignatureResponse in ciphersuite libraries * most structs now have a private field which mean that they can no longer be instantiated directly. `new()` methods have been added to them. * change `SigningPackage::new()` to take `&[u8]P instead of `Vec` -* expose `NonceCommitment` and `SignatureResponse` in ciphersuite crates * add `serde` support under `serde` feature to allow encoding structs which need to be communicated between participants. - -## Released +* expand docs to show the overall structure and contents ## 0.4.0 diff --git a/frost-core/Cargo.toml b/frost-core/Cargo.toml index 8c383f8..58fbcd9 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.4.0" +version = "0.5.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 2fb5eb3..963cf6e 100644 --- a/frost-ed25519/Cargo.toml +++ b/frost-ed25519/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" # - Update html_root_url # - Update CHANGELOG.md # - Create git tag. -version = "0.4.0" +version = "0.5.0" authors = [ "Deirdre Connolly ", "Chelsea Komlo ", @@ -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.4.0", features = ["test-impl"] } +frost-core = { path = "../frost-core", version = "0.5.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 8a03021..577b3d6 100644 --- a/frost-ed448/Cargo.toml +++ b/frost-ed448/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" # When releasing to crates.io: # - Update CHANGELOG.md # - Create git tag. -version = "0.4.0" +version = "0.5.0" authors = [ "Deirdre Connolly ", "Chelsea Komlo ", @@ -22,7 +22,7 @@ features = ["nightly"] [dependencies] ed448-goldilocks = { version = "0.9.0" } -frost-core = { path = "../frost-core", version = "0.4.0", features = ["test-impl"] } +frost-core = { path = "../frost-core", version = "0.5.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 7c267d4..3cc1c25 100644 --- a/frost-p256/Cargo.toml +++ b/frost-p256/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" # - Update html_root_url # - Update CHANGELOG.md # - Create git tag. -version = "0.4.0" +version = "0.5.0" authors = [ "Deirdre Connolly ", "Chelsea Komlo ", @@ -23,7 +23,7 @@ features = ["nightly"] [dependencies] p256 = { version = "0.13.0", features = ["hash2curve"] } -frost-core = { path = "../frost-core", version = "0.4.0", features = ["test-impl"] } +frost-core = { path = "../frost-core", version = "0.5.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 402fe79..53d8ca3 100644 --- a/frost-rerandomized/Cargo.toml +++ b/frost-rerandomized/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" # - Update html_root_url # - Update CHANGELOG.md # - Create git tag. -version = "0.4.0" +version = "0.5.0" authors = ["Deirdre Connolly ", "Chelsea Komlo ", "Conrado Gouvea "] readme = "README.md" @@ -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.4.0", features = ["internals"] } +frost-core = { path = "../frost-core", version = "0.5.0", features = ["internals"] } rand_core = "0.6" [dev-dependencies] diff --git a/frost-ristretto255/Cargo.toml b/frost-ristretto255/Cargo.toml index dd81cd4..c1a40b9 100644 --- a/frost-ristretto255/Cargo.toml +++ b/frost-ristretto255/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" # - Update html_root_url # - Update CHANGELOG.md # - Create git tag. -version = "0.4.0" +version = "0.5.0" authors = ["Deirdre Connolly ", "Chelsea Komlo ", "Conrado Gouvea "] readme = "README.md" license = "MIT OR Apache-2.0" @@ -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.4.0", features = ["test-impl"] } +frost-core = { path = "../frost-core", version = "0.5.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 8904806..862c953 100644 --- a/frost-secp256k1/Cargo.toml +++ b/frost-secp256k1/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" # When releasing to crates.io: # - Update CHANGELOG.md # - Create git tag. -version = "0.4.0" +version = "0.5.0" authors = [ "Deirdre Connolly ", "Chelsea Komlo ", @@ -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.4.0", features = ["test-impl"] } +frost-core = { path = "../frost-core", version = "0.5.0", features = ["test-impl"] } k256 = { version = "0.13.0", features = ["arithmetic", "expose-field", "hash2curve"] } rand_core = "0.6" sha2 = "0.10.2"