update versions and changelog for 0.6.0 (#434)

* update versions and changelog for 0.6.0

* fix typos
This commit is contained in:
Conrado Gouvea 2023-07-05 11:04:05 -03:00 committed by GitHub
parent b8ca1678a4
commit 5fa17ed15c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 25 additions and 15 deletions

View File

@ -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
@ -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

View File

@ -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 <durumcrustulum@gmail.com>", "Chelsea Komlo <me@chelseakomlo.com>", "Conrado Gouvea <conradoplg@gmail.com>"]
readme = "README.md"
license = "MIT OR Apache-2.0"

View File

@ -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 <durumcrustulum@gmail.com>",
"Chelsea Komlo <me@chelseakomlo.com>",
@ -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"

View File

@ -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 <durumcrustulum@gmail.com>",
"Chelsea Komlo <me@chelseakomlo.com>",
@ -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"

View File

@ -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 <durumcrustulum@gmail.com>",
"Chelsea Komlo <me@chelseakomlo.com>",
@ -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"

View File

@ -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 <durumcrustulum@gmail.com>", "Chelsea Komlo <me@chelseakomlo.com>",
"Conrado Gouvea <conradoplg@gmail.com>"]
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.5.0", features = ["internals"] }
frost-core = { path = "../frost-core", version = "0.6.0", features = ["internals"] }
rand_core = "0.6"
[dev-dependencies]

View File

@ -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 <durumcrustulum@gmail.com>", "Chelsea Komlo <me@chelseakomlo.com>", "Conrado Gouvea <conradoplg@gmail.com>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
@ -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"

View File

@ -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 <durumcrustulum@gmail.com>",
"Chelsea Komlo <me@chelseakomlo.com>",
@ -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"