diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 65475058..2c7abc2c 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - "node": "0.5.0" + "node": "0.6.0" } diff --git a/node/CHANGELOG.md b/node/CHANGELOG.md index 8b7262ec..4ce6f5a1 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.6.0](https://github.com/matter-labs/era-consensus/compare/v0.5.0...v0.6.0) (2024-11-14) + + +### Features + +* Implement ChonkyBFT ([#211](https://github.com/matter-labs/era-consensus/issues/211)) ([f4cc128](https://github.com/matter-labs/era-consensus/commit/f4cc128114027188e34a355e20f084777041480d)) + + +### Bug Fixes + +* Add wrap around to table cells on Debug page ([#214](https://github.com/matter-labs/era-consensus/issues/214)) ([6d52340](https://github.com/matter-labs/era-consensus/commit/6d523401b73a431a24f565dadf0471611c0c220b)) + ## [0.5.0](https://github.com/matter-labs/era-consensus/compare/v0.4.0...v0.5.0) (2024-10-09) diff --git a/node/Cargo.toml b/node/Cargo.toml index 5d058b24..f45eee73 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.5.0" +version = "0.6.0" [workspace.dependencies] # Crates from this repo. -zksync_consensus_bft = { version = "=0.5.0", path = "components/bft" } -zksync_consensus_crypto = { version = "=0.5.0", path = "libs/crypto" } -zksync_consensus_executor = { version = "=0.5.0", path = "components/executor" } -zksync_consensus_network = { version = "=0.5.0", path = "components/network" } -zksync_consensus_roles = { version = "=0.5.0", path = "libs/roles" } -zksync_consensus_storage = { version = "=0.5.0", path = "libs/storage" } -zksync_consensus_tools = { version = "=0.5.0", path = "tools" } -zksync_consensus_utils = { version = "=0.5.0", path = "libs/utils" } +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" } # Crates from this repo that might become independent in the future. -zksync_concurrency = { version = "=0.5.0", path = "libs/concurrency" } -zksync_protobuf = { version = "=0.5.0", path = "libs/protobuf" } -zksync_protobuf_build = { version = "=0.5.0", path = "libs/protobuf_build" } +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" } # Crates from Matter Labs. vise = "0.2.0"