From 510ce7d816ebdf2afb7f4686ad9d37eaf4757669 Mon Sep 17 00:00:00 2001 From: zksync-era-bot <147085853+zksync-era-bot@users.noreply.github.com> Date: Tue, 21 Jan 2025 00:56:18 +0400 Subject: [PATCH 1/2] chore(main): release 0.8.0 --- .github/release-please/manifest.json | 2 +- node/CHANGELOG.md | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 4d2f2435..14e03819 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - "node": "0.7.0" + "node": "0.8.0" } diff --git a/node/CHANGELOG.md b/node/CHANGELOG.md index c59238ac..b2baf639 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.8.0](https://github.com/matter-labs/era-consensus/compare/v0.7.0...v0.8.0) (2025-01-20) + + +### Features + +* documented the dangers of ordering in message encoding ([#225](https://github.com/matter-labs/era-consensus/issues/225)) ([c1b8e6e](https://github.com/matter-labs/era-consensus/commit/c1b8e6e021c5b958b047ac1478a337a6efe9e8cd)) + + +### Bug Fixes + +* Replicas forget messages and halt on restart ([#228](https://github.com/matter-labs/era-consensus/issues/228)) ([c723fbe](https://github.com/matter-labs/era-consensus/commit/c723fbe2453a52bab8fba9c202a404e5fc4fb532)) + ## [0.7.0](https://github.com/matter-labs/era-consensus/compare/v0.6.0...v0.7.0) (2024-12-16) From 84d8000bc62e449e734acd51cd1aef1feaf1025c Mon Sep 17 00:00:00 2001 From: zksync-era-bot Date: Mon, 20 Jan 2025 20:56:56 +0000 Subject: [PATCH 2/2] Update version in Cargo.toml --- node/Cargo.toml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/node/Cargo.toml b/node/Cargo.toml index 3aa2b1a9..15b0ff94 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.7.0" +version = "0.8.0" [workspace.dependencies] # Crates from this repo. -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" } +zksync_consensus_bft = { version = "=0.8.0", path = "components/bft" } +zksync_consensus_crypto = { version = "=0.8.0", path = "libs/crypto" } +zksync_consensus_executor = { version = "=0.8.0", path = "components/executor" } +zksync_consensus_network = { version = "=0.8.0", path = "components/network" } +zksync_consensus_roles = { version = "=0.8.0", path = "libs/roles" } +zksync_consensus_storage = { version = "=0.8.0", path = "libs/storage" } +zksync_consensus_tools = { version = "=0.8.0", path = "tools" } +zksync_consensus_utils = { version = "=0.8.0", path = "libs/utils" } # Crates from this repo that might become independent in the future. -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" } +zksync_concurrency = { version = "=0.8.0", path = "libs/concurrency" } +zksync_protobuf = { version = "=0.8.0", path = "libs/protobuf" } +zksync_protobuf_build = { version = "=0.8.0", path = "libs/protobuf_build" } # Crates from Matter Labs. vise = "0.2.0"