Skip to content

Commit

Permalink
support solc 0.8.28 (#84)
Browse files Browse the repository at this point in the history

Signed-off-by: Cyrill Leutwiler <[email protected]>
  • Loading branch information
xermicus authored Oct 14, 2024
1 parent e5233fc commit 92a1846
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/solidity/src/solc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 92a1846

Please sign in to comment.