Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
crates.io release v0.150.2-rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilLuta committed Aug 6, 2024
1 parent ea359dc commit 28ee60c
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zkevm_test_harness"
version = "0.150.2-rc.2"
version = "0.150.2-rc.3"
edition = "2021"
authors = ["Alex Vlasov <[email protected]>", "Konstantin Panarin <[email protected]>"]
homepage = "https://zksync.io/"
Expand All @@ -25,9 +25,9 @@ name = "geometry_config_generator"
path = "src/geometry_config_generator/main.rs"

[dependencies]
circuit_definitions = { version = "=0.150.2-rc.2", path = "./circuit_definitions"}
circuit_sequencer_api = { version = "=0.150.2-rc.2", path = "./circuit_sequencer_api"}
kzg = { package = "zksync_kzg", version = "=0.150.2-rc.2", path = "./kzg"}
circuit_definitions = { version = "=0.150.2-rc.3", path = "./circuit_definitions"}
circuit_sequencer_api = { version = "=0.150.2-rc.3", path = "./circuit_sequencer_api"}
kzg = { package = "zksync_kzg", version = "=0.150.2-rc.3", path = "./kzg"}

zkevm-assembly = "=0.150.0"

Expand Down
6 changes: 3 additions & 3 deletions circuit_definitions/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "circuit_definitions"
version = "0.150.2-rc.2"
version = "0.150.2-rc.3"
edition = "2021"
authors = ["The Matter Labs Team <[email protected]>"]
homepage = "https://zksync.io/"
Expand All @@ -13,10 +13,10 @@ description = "ZKsync Era circuits definitions"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
snark_wrapper = "=0.1.1"
snark_wrapper = "=0.1.2"
# snark_wrapper = {path = "../../snark_wrapper"}

circuit_encodings = { version = "0.150.2-rc.2", path = "../circuit_encodings" }
circuit_encodings = { version = "0.150.2-rc.3", path = "../circuit_encodings" }

derivative = "2.2"
serde = {version = "1", features = ["derive"]}
Expand Down
2 changes: 1 addition & 1 deletion circuit_definitions/rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "nightly-2024-02-01"
channel = "nightly-2024-08-01"
4 changes: 2 additions & 2 deletions circuit_encodings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "circuit_encodings"
version = "0.150.2-rc.2"
version = "0.150.2-rc.3"
edition = "2021"
authors = ["The Matter Labs Team <[email protected]>"]
homepage = "https://zksync.io/"
Expand All @@ -13,7 +13,7 @@ description = "ZKsync Era circuits encodings"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
zkevm_circuits = "=0.150.1"
zkevm_circuits = "=0.150.2"
zk_evm = "=0.150.0"

derivative = "2.2"
Expand Down
4 changes: 2 additions & 2 deletions circuit_sequencer_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "circuit_sequencer_api"
version = "0.150.2-rc.2"
version = "0.150.2-rc.3"
edition = "2021"
authors = ["The Matter Labs Team <[email protected]>"]
homepage = "https://zksync.io/"
Expand All @@ -14,7 +14,7 @@ description = "ZKsync Era circuit API for sequencer"

[dependencies]

circuit_encodings = { version = "=0.150.2-rc.2", path = "../circuit_encodings"}
circuit_encodings = { version = "=0.150.2-rc.3", path = "../circuit_encodings"}
bellman = { package = "bellman_ce", version = "=0.7.0" }


Expand Down
6 changes: 3 additions & 3 deletions kzg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zksync_kzg"
version = "0.150.2-rc.2"
version = "0.150.2-rc.3"
edition = "2021"
authors = ["The Matter Labs Team <[email protected]>"]
homepage = "https://zksync.io/"
Expand All @@ -22,8 +22,8 @@ hex = "0.4"
once_cell = "1"
serde_with = {version = "1", features = ["hex"]}

boojum = "=0.2.1"
zkevm_circuits = "=0.150.1"
boojum = "=0.2.2"
zkevm_circuits = "=0.150.2"

[dev-dependencies]
rand = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
# channel = "nightly"
channel = "nightly-2024-02-01"
channel = "nightly-2024-08-01"

0 comments on commit 28ee60c

Please sign in to comment.