From e98d70badcb18e7ed9c6a51046126d92cb40bebb Mon Sep 17 00:00:00 2001 From: zksync-era-bot <147085853+zksync-era-bot@users.noreply.github.com> Date: Mon, 16 Dec 2024 21:59:15 +0400 Subject: [PATCH] chore(main): release 0.7.0 (#216) :robot: I have created a release *beep* *boop* --- ## [0.7.0](https://github.com/matter-labs/era-consensus/compare/v0.6.0...v0.7.0) (2024-12-16) ### Features * Added tool to recover public keys from secret keys ([#224](https://github.com/matter-labs/era-consensus/issues/224)) ([f1522f8](https://github.com/matter-labs/era-consensus/commit/f1522f8b23ef1a5450e626d187accac6bc637eb1)) * Added view timeout duration as a config parameter ([#222](https://github.com/matter-labs/era-consensus/issues/222)) ([f07fcfa](https://github.com/matter-labs/era-consensus/commit/f07fcfa67e298d53ddeb801ce20c3ea2571e92da)) * loadtest improvements ([#223](https://github.com/matter-labs/era-consensus/issues/223)) ([69f11c7](https://github.com/matter-labs/era-consensus/commit/69f11c7396e4980c3db7999fb8dbb6bc7cff1fe5)) ### Bug Fixes * Fix high vote on informal spec ([#215](https://github.com/matter-labs/era-consensus/issues/215)) ([c586f85](https://github.com/matter-labs/era-consensus/commit/c586f850674517975e2c97b9e2a61f6eca25bdf9)) * TimeoutQC aggregation ([#220](https://github.com/matter-labs/era-consensus/issues/220)) ([8a49824](https://github.com/matter-labs/era-consensus/commit/8a498246b2c2d88d63e51049bb3acd20a8166479)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: zksync-era-bot --- .github/release-please/manifest.json | 2 +- node/CHANGELOG.md | 15 +++++++++++++++ node/Cargo.toml | 24 ++++++++++++------------ 3 files changed, 28 insertions(+), 13 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 2c7abc2c..4d2f2435 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - "node": "0.6.0" + "node": "0.7.0" } diff --git a/node/CHANGELOG.md b/node/CHANGELOG.md index 4ce6f5a1..c59238ac 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.7.0](https://github.com/matter-labs/era-consensus/compare/v0.6.0...v0.7.0) (2024-12-16) + + +### Features + +* Added tool to recover public keys from secret keys ([#224](https://github.com/matter-labs/era-consensus/issues/224)) ([f1522f8](https://github.com/matter-labs/era-consensus/commit/f1522f8b23ef1a5450e626d187accac6bc637eb1)) +* Added view timeout duration as a config parameter ([#222](https://github.com/matter-labs/era-consensus/issues/222)) ([f07fcfa](https://github.com/matter-labs/era-consensus/commit/f07fcfa67e298d53ddeb801ce20c3ea2571e92da)) +* loadtest improvements ([#223](https://github.com/matter-labs/era-consensus/issues/223)) ([69f11c7](https://github.com/matter-labs/era-consensus/commit/69f11c7396e4980c3db7999fb8dbb6bc7cff1fe5)) + + +### Bug Fixes + +* Fix high vote on informal spec ([#215](https://github.com/matter-labs/era-consensus/issues/215)) ([c586f85](https://github.com/matter-labs/era-consensus/commit/c586f850674517975e2c97b9e2a61f6eca25bdf9)) +* TimeoutQC aggregation ([#220](https://github.com/matter-labs/era-consensus/issues/220)) ([8a49824](https://github.com/matter-labs/era-consensus/commit/8a498246b2c2d88d63e51049bb3acd20a8166479)) + ## [0.6.0](https://github.com/matter-labs/era-consensus/compare/v0.5.0...v0.6.0) (2024-11-14) diff --git a/node/Cargo.toml b/node/Cargo.toml index 9d8b3df5..3aa2b1a9 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -22,23 +22,23 @@ homepage = "https://matter-labs.io/" keywords = ["blockchain", "zksync"] license = "MIT OR Apache-2.0" repository = "https://github.com/matter-labs/era-consensus" -version = "0.6.0" +version = "0.7.0" [workspace.dependencies] # Crates from this repo. -zksync_consensus_bft = { version = "=0.6.0", path = "components/bft" } -zksync_consensus_crypto = { version = "=0.6.0", path = "libs/crypto" } -zksync_consensus_executor = { version = "=0.6.0", path = "components/executor" } -zksync_consensus_network = { version = "=0.6.0", path = "components/network" } -zksync_consensus_roles = { version = "=0.6.0", path = "libs/roles" } -zksync_consensus_storage = { version = "=0.6.0", path = "libs/storage" } -zksync_consensus_tools = { version = "=0.6.0", path = "tools" } -zksync_consensus_utils = { version = "=0.6.0", path = "libs/utils" } +zksync_consensus_bft = { version = "=0.7.0", path = "components/bft" } +zksync_consensus_crypto = { version = "=0.7.0", path = "libs/crypto" } +zksync_consensus_executor = { version = "=0.7.0", path = "components/executor" } +zksync_consensus_network = { version = "=0.7.0", path = "components/network" } +zksync_consensus_roles = { version = "=0.7.0", path = "libs/roles" } +zksync_consensus_storage = { version = "=0.7.0", path = "libs/storage" } +zksync_consensus_tools = { version = "=0.7.0", path = "tools" } +zksync_consensus_utils = { version = "=0.7.0", path = "libs/utils" } # Crates from this repo that might become independent in the future. -zksync_concurrency = { version = "=0.6.0", path = "libs/concurrency" } -zksync_protobuf = { version = "=0.6.0", path = "libs/protobuf" } -zksync_protobuf_build = { version = "=0.6.0", path = "libs/protobuf_build" } +zksync_concurrency = { version = "=0.7.0", path = "libs/concurrency" } +zksync_protobuf = { version = "=0.7.0", path = "libs/protobuf" } +zksync_protobuf_build = { version = "=0.7.0", path = "libs/protobuf_build" } # Crates from Matter Labs. vise = "0.2.0"