diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 94007ef4..277d86a7 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - "node": "0.2.0" + "node": "0.3.0" } diff --git a/node/CHANGELOG.md b/node/CHANGELOG.md index 6d04c163..98d518b3 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.0](https://github.com/matter-labs/era-consensus/compare/v0.2.0...v0.3.0) (2024-09-26) + + +### Features + +* dummy pr to trigger release-please ([#201](https://github.com/matter-labs/era-consensus/issues/201)) ([fd78177](https://github.com/matter-labs/era-consensus/commit/fd781776efb8d68b6a4c16380f7ce154ad321141)) + ## [0.2.0](https://github.com/matter-labs/era-consensus/compare/v0.1.1...v0.2.0) (2024-09-24) diff --git a/node/Cargo.toml b/node/Cargo.toml index e22134ea..a464f1aa 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -22,23 +22,23 @@ homepage = "https://matter-labs.io/" repository = "https://github.com/matter-labs/era-consensus" license = "MIT OR Apache-2.0" keywords = ["blockchain", "zksync"] -version = "0.2.0" +version = "0.3.0" [workspace.dependencies] # Crates from this repo. -zksync_consensus_bft = { version = "=0.2.0", path = "actors/bft" } -zksync_consensus_crypto = { version = "=0.2.0", path = "libs/crypto" } -zksync_consensus_executor = { version = "=0.2.0", path = "actors/executor" } -zksync_consensus_network = { version = "=0.2.0", path = "actors/network" } -zksync_consensus_roles = { version = "=0.2.0", path = "libs/roles" } -zksync_consensus_storage = { version = "=0.2.0", path = "libs/storage" } -zksync_consensus_tools = { version = "=0.2.0", path = "tools" } -zksync_consensus_utils = { version = "=0.2.0", path = "libs/utils" } +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" } # Crates from this repo that might become independent in the future. -zksync_concurrency = { version = "=0.2.0", path = "libs/concurrency" } -zksync_protobuf = { version = "=0.2.0", path = "libs/protobuf" } -zksync_protobuf_build = { version = "=0.2.0", path = "libs/protobuf_build" } +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" } # Crates from Matter Labs. vise = "0.2.0"