From 50d24c6d82c86aacf5161f1bbaaed4c9e9168011 Mon Sep 17 00:00:00 2001 From: zksync-era-bot <147085853+zksync-era-bot@users.noreply.github.com> Date: Wed, 9 Oct 2024 18:55:01 +0400 Subject: [PATCH] chore(main): release 0.4.0 (#207) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit :robot: I have created a release *beep* *boop* --- ## [0.4.0](https://github.com/matter-labs/era-consensus/compare/v0.3.0...v0.4.0) (2024-10-07) ### Features * Expand metrics in HTTP debug page ([#205](https://github.com/matter-labs/era-consensus/issues/205)) ([2ef11bc](https://github.com/matter-labs/era-consensus/commit/2ef11bc0bc0ef9b332c4a4c2715c523143e844bd)) --- 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 Co-authored-by: Bruno França --- .github/release-please/manifest.json | 2 +- node/CHANGELOG.md | 7 +++++++ node/Cargo.toml | 24 ++++++++++++------------ 3 files changed, 20 insertions(+), 13 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 277d86a7..6f12bbf6 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - "node": "0.3.0" + "node": "0.4.0" } diff --git a/node/CHANGELOG.md b/node/CHANGELOG.md index 98d518b3..e2016412 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.0](https://github.com/matter-labs/era-consensus/compare/v0.3.0...v0.4.0) (2024-10-07) + + +### Features + +* Expand metrics in HTTP debug page ([#205](https://github.com/matter-labs/era-consensus/issues/205)) ([2ef11bc](https://github.com/matter-labs/era-consensus/commit/2ef11bc0bc0ef9b332c4a4c2715c523143e844bd)) + ## [0.3.0](https://github.com/matter-labs/era-consensus/compare/v0.2.0...v0.3.0) (2024-09-26) diff --git a/node/Cargo.toml b/node/Cargo.toml index 24115ec1..65a91a7b 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.3.0" +version = "0.4.0" [workspace.dependencies] # Crates from this repo. -zksync_consensus_bft = { version = "=0.3.0", path = "actors/bft" } -zksync_consensus_crypto = { version = "=0.3.0", path = "libs/crypto" } -zksync_consensus_executor = { version = "=0.3.0", path = "actors/executor" } -zksync_consensus_network = { version = "=0.3.0", path = "actors/network" } -zksync_consensus_roles = { version = "=0.3.0", path = "libs/roles" } -zksync_consensus_storage = { version = "=0.3.0", path = "libs/storage" } -zksync_consensus_tools = { version = "=0.3.0", path = "tools" } -zksync_consensus_utils = { version = "=0.3.0", path = "libs/utils" } +zksync_consensus_bft = { version = "=0.4.0", path = "actors/bft" } +zksync_consensus_crypto = { version = "=0.4.0", path = "libs/crypto" } +zksync_consensus_executor = { version = "=0.4.0", path = "actors/executor" } +zksync_consensus_network = { version = "=0.4.0", path = "actors/network" } +zksync_consensus_roles = { version = "=0.4.0", path = "libs/roles" } +zksync_consensus_storage = { version = "=0.4.0", path = "libs/storage" } +zksync_consensus_tools = { version = "=0.4.0", path = "tools" } +zksync_consensus_utils = { version = "=0.4.0", path = "libs/utils" } # Crates from this repo that might become independent in the future. -zksync_concurrency = { version = "=0.3.0", path = "libs/concurrency" } -zksync_protobuf = { version = "=0.3.0", path = "libs/protobuf" } -zksync_protobuf_build = { version = "=0.3.0", path = "libs/protobuf_build" } +zksync_concurrency = { version = "=0.4.0", path = "libs/concurrency" } +zksync_protobuf = { version = "=0.4.0", path = "libs/protobuf" } +zksync_protobuf_build = { version = "=0.4.0", path = "libs/protobuf_build" } # Crates from Matter Labs. vise = "0.2.0"