mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-06-14 07:41:02 +00:00
support solc 0.8.28 (#84)
Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
This commit is contained in:
@@ -19,7 +19,7 @@ jobs:
|
|||||||
- name: Install solc
|
- name: Install solc
|
||||||
run: |
|
run: |
|
||||||
mkdir -p solc
|
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
|
chmod +x solc/solc
|
||||||
echo "$(pwd)/solc/" >> $GITHUB_PATH
|
echo "$(pwd)/solc/" >> $GITHUB_PATH
|
||||||
|
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ impl Compiler {
|
|||||||
pub const FIRST_VIA_IR_VERSION: semver::Version = semver::Version::new(0, 8, 13);
|
pub const FIRST_VIA_IR_VERSION: semver::Version = semver::Version::new(0, 8, 13);
|
||||||
|
|
||||||
/// The last supported version of `solc`.
|
/// 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.
|
/// A shortcut constructor.
|
||||||
/// Different tools may use different `executable` names. For example, the integration tester
|
/// Different tools may use different `executable` names. For example, the integration tester
|
||||||
|
|||||||
Reference in New Issue
Block a user