Skip to content

Commit

Permalink
update versions and changelog for 0.6.0 (#434)
Browse files Browse the repository at this point in the history
* update versions and changelog for 0.6.0

* fix typos
  • Loading branch information
conradoplg authored Jul 5, 2023
1 parent b8ca167 commit 5fa17ed
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 15 deletions.
14 changes: 12 additions & 2 deletions frost-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Entries are listed in reverse chronological order.

## Unreleased

## 0.7.0

## Released

## 0.6.0

* The following structs had a `Identifier` field removed, which affects
Expand All @@ -23,8 +27,14 @@ Entries are listed in reverse chronological order.
* `SignatureResponse` was removed. `SignatureShare` can now be encoded directly with
`from/to_bytes()`.
* rename all `to_bytes()`/`from_bytes()` to `serialize()`/`deserialize()`

## Released
* The group public key is now included in the hash inside the binding factor
computation. This reflects an upcoming change to the specification:
https://github.com/cfrg/draft-irtf-cfrg-frost/pull/439
* `generate_with_dealer()` was change to allow specifying which identifiers to use
* Identifiers can now be derived from arbitrary strings with `Identifier::derive()`
* Added `RandomizerParams::from_randomizer()` to allow specifying a randomizer
* Added `Error::culprit()` to easily get the identifier of a misbehaving participant
* Most public types now implement common traits such as Clone and Debug

## 0.5.0

Expand Down
2 changes: 1 addition & 1 deletion frost-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
# When releasing to crates.io:
# - Update CHANGELOG.md
# - Create git tag.
version = "0.5.0"
version = "0.6.0"
authors = ["Deirdre Connolly <[email protected]>", "Chelsea Komlo <[email protected]>", "Conrado Gouvea <[email protected]>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions frost-ed25519/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
# - Update html_root_url
# - Update CHANGELOG.md
# - Create git tag.
version = "0.5.0"
version = "0.6.0"
authors = [
"Deirdre Connolly <[email protected]>",
"Chelsea Komlo <[email protected]>",
Expand All @@ -23,7 +23,7 @@ features = ["nightly"]

[dependencies]
curve25519-dalek = { version = "=4.0.0-rc.3", features = ["serde", "rand_core"] }
frost-core = { path = "../frost-core", version = "0.5.0", features = ["test-impl"] }
frost-core = { path = "../frost-core", version = "0.6.0", features = ["test-impl"] }
rand_core = "0.6"
sha2 = "0.10.2"

Expand Down
4 changes: 2 additions & 2 deletions frost-ed448/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
# When releasing to crates.io:
# - Update CHANGELOG.md
# - Create git tag.
version = "0.5.0"
version = "0.6.0"
authors = [
"Deirdre Connolly <[email protected]>",
"Chelsea Komlo <[email protected]>",
Expand All @@ -22,7 +22,7 @@ features = ["nightly"]

[dependencies]
ed448-goldilocks = { version = "0.9.0" }
frost-core = { path = "../frost-core", version = "0.5.0", features = ["test-impl"] }
frost-core = { path = "../frost-core", version = "0.6.0", features = ["test-impl"] }
rand_core = "0.6"
sha3 = "0.10.6"

Expand Down
4 changes: 2 additions & 2 deletions frost-p256/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
# - Update html_root_url
# - Update CHANGELOG.md
# - Create git tag.
version = "0.5.0"
version = "0.6.0"
authors = [
"Deirdre Connolly <[email protected]>",
"Chelsea Komlo <[email protected]>",
Expand All @@ -23,7 +23,7 @@ features = ["nightly"]

[dependencies]
p256 = { version = "0.13.0", features = ["hash2curve"] }
frost-core = { path = "../frost-core", version = "0.5.0", features = ["test-impl"] }
frost-core = { path = "../frost-core", version = "0.6.0", features = ["test-impl"] }
rand_core = "0.6"
sha2 = "0.10.2"

Expand Down
4 changes: 2 additions & 2 deletions frost-rerandomized/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
# - Update html_root_url
# - Update CHANGELOG.md
# - Create git tag.
version = "0.5.0"
version = "0.6.0"
authors = ["Deirdre Connolly <[email protected]>", "Chelsea Komlo <[email protected]>",
"Conrado Gouvea <[email protected]>"]
readme = "README.md"
Expand All @@ -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.5.0", features = ["internals"] }
frost-core = { path = "../frost-core", version = "0.6.0", features = ["internals"] }
rand_core = "0.6"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions frost-ristretto255/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
# - Update html_root_url
# - Update CHANGELOG.md
# - Create git tag.
version = "0.5.0"
version = "0.6.0"
authors = ["Deirdre Connolly <[email protected]>", "Chelsea Komlo <[email protected]>", "Conrado Gouvea <[email protected]>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
Expand All @@ -19,7 +19,7 @@ features = ["nightly"]

[dependencies]
curve25519-dalek = { version = "=4.0.0-rc.3", features = ["serde", "rand_core"] }
frost-core = { path = "../frost-core", version = "0.5.0", features = ["test-impl"] }
frost-core = { path = "../frost-core", version = "0.6.0", features = ["test-impl"] }
rand_core = "0.6"
sha2 = "0.10.2"

Expand Down
4 changes: 2 additions & 2 deletions frost-secp256k1/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
# When releasing to crates.io:
# - Update CHANGELOG.md
# - Create git tag.
version = "0.5.0"
version = "0.6.0"
authors = [
"Deirdre Connolly <[email protected]>",
"Chelsea Komlo <[email protected]>",
Expand All @@ -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.5.0", features = ["test-impl"] }
frost-core = { path = "../frost-core", version = "0.6.0", features = ["test-impl"] }
k256 = { version = "0.13.0", features = ["arithmetic", "expose-field", "hash2curve"] }
rand_core = "0.6"
sha2 = "0.10.2"
Expand Down

0 comments on commit 5fa17ed

Please sign in to comment.