Skip to content

Commit ed0df65

Browse files
authored
Merge branch 'main' into elfedy-fix-ci-filters
2 parents 44eeba2 + c5b5a7e commit ed0df65

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ zksync_vm_interface = { git = "https://github.com/matter-labs/zksync-era.git", r
256256
zksync_multivm = { git = "https://github.com/matter-labs/zksync-era.git", rev = "core-v25.4.0" }
257257
zksync_utils = { git = "https://github.com/matter-labs/zksync-era.git", rev = "core-v25.4.0" }
258258
zksync_contracts = { git = "https://github.com/matter-labs/zksync-era.git", rev = "core-v25.4.0" }
259-
era-solc = { git = "https://github.com/matter-labs/era-compiler-solidity.git", tag = "1.5.10", package = "era-solc" }
259+
era-solc = { git = "https://github.com/matter-labs/era-compiler-solidity.git", tag = "1.5.11", package = "era-solc" }
260260

261261
# macros
262262
proc-macro2 = "1.0"

crates/config/src/zksync.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ pub fn config_zksolc_compiler(config: &Config) -> Result<ZkSolcCompiler, SolcErr
176176
{
177177
zksolc
178178
} else if !config.offline {
179-
let default_version = semver::Version::new(1, 5, 10);
179+
let default_version = semver::Version::new(1, 5, 11);
180180
let mut zksolc = ZkSolc::find_installed_version(&default_version)?;
181181
if zksolc.is_none() {
182182
ZkSolc::blocking_install(&default_version)?;

crates/forge/tests/it/test_helpers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ impl ForgeTestProfile {
201201
zk_config.zksync.startup = true;
202202
zk_config.zksync.fallback_oz = true;
203203
zk_config.zksync.optimizer_mode = '3';
204-
zk_config.zksync.zksolc = Some(foundry_config::SolcReq::Version(Version::new(1, 5, 10)));
204+
zk_config.zksync.zksolc = Some(foundry_config::SolcReq::Version(Version::new(1, 5, 11)));
205205
zk_config.fuzz.no_zksync_reserved_addresses = true;
206206
zk_config.invariant.depth = 15;
207207

crates/zksync/compilers/src/compilers/zksolc/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub const ZKSOLC: &str = "zksolc";
4040
/// ZKsync solc release used for all ZKsync solc versions
4141
pub const ZKSYNC_SOLC_RELEASE: Version = Version::new(1, 0, 1);
4242
/// Default zksolc version
43-
pub const ZKSOLC_VERSION: Version = Version::new(1, 5, 10);
43+
pub const ZKSOLC_VERSION: Version = Version::new(1, 5, 11);
4444

4545
#[cfg(test)]
4646
macro_rules! take_solc_installer_lock {

0 commit comments

Comments
 (0)