From 92a18460e49aed9db15c7c94ce01f1dd9186b04a Mon Sep 17 00:00:00 2001 From: Cyrill Leutwiler Date: Mon, 14 Oct 2024 13:25:18 +0200 Subject: [PATCH] support solc 0.8.28 (#84) Signed-off-by: Cyrill Leutwiler --- .github/workflows/rust.yml | 2 +- crates/solidity/src/solc/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8397de3..31006ca 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -19,7 +19,7 @@ jobs: - name: Install solc run: | mkdir -p solc - curl -sSL --output solc/solc https://github.com/ethereum/solidity/releases/download/v0.8.27/solc-static-linux + curl -sSL --output solc/solc https://github.com/ethereum/solidity/releases/download/v0.8.28/solc-static-linux chmod +x solc/solc echo "$(pwd)/solc/" >> $GITHUB_PATH diff --git a/crates/solidity/src/solc/mod.rs b/crates/solidity/src/solc/mod.rs index ee0e6bf..8c0ec7a 100644 --- a/crates/solidity/src/solc/mod.rs +++ b/crates/solidity/src/solc/mod.rs @@ -37,7 +37,7 @@ impl Compiler { pub const FIRST_VIA_IR_VERSION: semver::Version = semver::Version::new(0, 8, 13); /// The last supported version of `solc`. - pub const LAST_SUPPORTED_VERSION: semver::Version = semver::Version::new(0, 8, 27); + pub const LAST_SUPPORTED_VERSION: semver::Version = semver::Version::new(0, 8, 28); /// A shortcut constructor. /// Different tools may use different `executable` names. For example, the integration tester