From 5fdb91cae3055e82bac06c9ff71be80f9f33ba86 Mon Sep 17 00:00:00 2001 From: zksync-era-bot <147085853+zksync-era-bot@users.noreply.github.com> Date: Fri, 6 Sep 2024 16:50:32 +0400 Subject: [PATCH] chore(main): release 0.1.1 (#192) :robot: I have created a release *beep* *boop* --- ## [0.1.1](https://github.com/matter-labs/era-consensus/compare/v0.1.0...v0.1.1) (2024-09-06) ### Features * Remove pairing crate dependency ([#190](https://github.com/matter-labs/era-consensus/issues/190)) ([9c654a4](https://github.com/matter-labs/era-consensus/commit/9c654a4333b7864fd704e941b5eafefec5e830cf)) --- 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: Igor Aleksanov Co-authored-by: zksync-era-bot --- .github/release-please/manifest.json | 2 +- node/CHANGELOG.md | 8 ++++++++ node/Cargo.toml | 24 ++++++++++++------------ 3 files changed, 21 insertions(+), 13 deletions(-) create mode 100644 node/CHANGELOG.md diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index facb287e..de688f18 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - "node": "0.1.0" + "node": "0.1.1" } diff --git a/node/CHANGELOG.md b/node/CHANGELOG.md new file mode 100644 index 00000000..a2bc9bd2 --- /dev/null +++ b/node/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## [0.1.1](https://github.com/matter-labs/era-consensus/compare/v0.1.0...v0.1.1) (2024-09-06) + + +### Features + +* Remove pairing crate dependency ([#190](https://github.com/matter-labs/era-consensus/issues/190)) ([9c654a4](https://github.com/matter-labs/era-consensus/commit/9c654a4333b7864fd704e941b5eafefec5e830cf)) diff --git a/node/Cargo.toml b/node/Cargo.toml index 44ba874f..b0e7370a 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.1.0-rc.12" +version = "0.1.1" [workspace.dependencies] # Crates from this repo. -zksync_consensus_bft = { version = "=0.1.0-rc.12", path = "actors/bft" } -zksync_consensus_crypto = { version = "=0.1.0-rc.12", path = "libs/crypto" } -zksync_consensus_executor = { version = "=0.1.0-rc.12", path = "actors/executor" } -zksync_consensus_network = { version = "=0.1.0-rc.12", path = "actors/network" } -zksync_consensus_roles = { version = "=0.1.0-rc.12", path = "libs/roles" } -zksync_consensus_storage = { version = "=0.1.0-rc.12", path = "libs/storage" } -zksync_consensus_tools = { version = "=0.1.0-rc.12", path = "tools" } -zksync_consensus_utils = { version = "=0.1.0-rc.12", path = "libs/utils" } +zksync_consensus_bft = { version = "=0.1.1", path = "actors/bft" } +zksync_consensus_crypto = { version = "=0.1.1", path = "libs/crypto" } +zksync_consensus_executor = { version = "=0.1.1", path = "actors/executor" } +zksync_consensus_network = { version = "=0.1.1", path = "actors/network" } +zksync_consensus_roles = { version = "=0.1.1", path = "libs/roles" } +zksync_consensus_storage = { version = "=0.1.1", path = "libs/storage" } +zksync_consensus_tools = { version = "=0.1.1", path = "tools" } +zksync_consensus_utils = { version = "=0.1.1", path = "libs/utils" } # Crates from this repo that might become independent in the future. -zksync_concurrency = { version = "=0.1.0-rc.12", path = "libs/concurrency" } -zksync_protobuf = { version = "=0.1.0-rc.12", path = "libs/protobuf" } -zksync_protobuf_build = { version = "=0.1.0-rc.12", path = "libs/protobuf_build" } +zksync_concurrency = { version = "=0.1.1", path = "libs/concurrency" } +zksync_protobuf = { version = "=0.1.1", path = "libs/protobuf" } +zksync_protobuf_build = { version = "=0.1.1", path = "libs/protobuf_build" } # Crates from Matter Labs. vise = "0.2.0"