-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🤖 I have created a release *beep* *boop* --- ## [0.150.5](v0.150.4...v0.150.5) (2024-09-06) ### Features * Bump crypto dependencies ([#40](#40)) ([407645f](407645f)) * **ci:** Automatic releases on crates.io ([#24](#24)) ([24ff829](24ff829)) * Introduce release-please ([#12](#12)) ([4bb5cca](4bb5cca)) ### Bug Fixes * Fix hard static analysis errors ([#14](#14)) ([ce50752](ce50752)) --- 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 <[email protected]>
- Loading branch information
1 parent
407645f
commit 0590020
Showing
3 changed files
with
27 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
".": "0.150.4" | ||
".": "0.150.5" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Changelog | ||
|
||
## [0.150.5](https://github.com/matter-labs/zksync-protocol/compare/v0.150.4...v0.150.5) (2024-09-06) | ||
|
||
|
||
### Features | ||
|
||
* Bump crypto dependencies ([#40](https://github.com/matter-labs/zksync-protocol/issues/40)) ([407645f](https://github.com/matter-labs/zksync-protocol/commit/407645f349052b47f224fc24febdf8f1618341a7)) | ||
* **ci:** Automatic releases on crates.io ([#24](https://github.com/matter-labs/zksync-protocol/issues/24)) ([24ff829](https://github.com/matter-labs/zksync-protocol/commit/24ff829f365b04948e349f9c5ad160d6e2eeae69)) | ||
* Introduce release-please ([#12](https://github.com/matter-labs/zksync-protocol/issues/12)) ([4bb5cca](https://github.com/matter-labs/zksync-protocol/commit/4bb5cca0b113f06185201d10db31a73f0f56ea1e)) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* Fix hard static analysis errors ([#14](https://github.com/matter-labs/zksync-protocol/issues/14)) ([ce50752](https://github.com/matter-labs/zksync-protocol/commit/ce50752e8c277537c40e3e16cfd6bc6f7ab8e700)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ resolver = "2" | |
|
||
[workspace.package] | ||
# All the packages in the workspace should have the same version | ||
version = "0.150.4" | ||
version = "0.150.5" | ||
edition = "2021" | ||
authors = ["The Matter Labs Team <[email protected]>"] | ||
homepage = "https://zksync.io/" | ||
|
@@ -16,16 +16,16 @@ keywords = ["blockchain", "zksync"] | |
categories = ["cryptography"] | ||
|
||
[workspace.dependencies] | ||
circuit_definitions = { version = "=0.150.4", path = "crates/circuit_definitions" } | ||
circuit_encodings = { version = "=0.150.4", path = "crates/circuit_encodings" } | ||
circuit_sequencer_api = { version = "=0.150.4", path = "crates/circuit_sequencer_api" } | ||
kzg = { version = "=0.150.4", path = "crates/kzg", package = "zksync_kzg" } | ||
zk_evm = { version = "=0.150.4", path = "crates/zk_evm" } | ||
zk_evm_abstractions = { version = "=0.150.4", path = "crates/zk_evm_abstractions" } | ||
zkevm_circuits = { version = "=0.150.4", path = "crates/zkevm_circuits" } | ||
zkevm_opcode_defs = { version = "=0.150.4", path = "crates/zkevm_opcode_defs" } | ||
zkevm_test_harness = { version = "=0.150.4", path = "crates/zkevm_test_harness" } | ||
zkevm-assembly = { version = "=0.150.4", path = "crates/zkEVM-assembly" } | ||
circuit_definitions = { version = "=0.150.5", path = "crates/circuit_definitions" } | ||
circuit_encodings = { version = "=0.150.5", path = "crates/circuit_encodings" } | ||
circuit_sequencer_api = { version = "=0.150.5", path = "crates/circuit_sequencer_api" } | ||
kzg = { version = "=0.150.5", path = "crates/kzg", package = "zksync_kzg" } | ||
zk_evm = { version = "=0.150.5", path = "crates/zk_evm" } | ||
zk_evm_abstractions = { version = "=0.150.5", path = "crates/zk_evm_abstractions" } | ||
zkevm_circuits = { version = "=0.150.5", path = "crates/zkevm_circuits" } | ||
zkevm_opcode_defs = { version = "=0.150.5", path = "crates/zkevm_opcode_defs" } | ||
zkevm_test_harness = { version = "=0.150.5", path = "crates/zkevm_test_harness" } | ||
zkevm-assembly = { version = "=0.150.5", path = "crates/zkEVM-assembly" } | ||
|
||
# `zksync-crypto` repository | ||
snark_wrapper = "=0.30.1" | ||
|