Update solc compiler version check

This commit is contained in:
Sebastian Miasojed
2024-11-07 15:30:00 +01:00
parent d260472330
commit b7b28efded
+1 -1
View File
@@ -28,7 +28,7 @@ pub(crate) const FIRST_YUL_VERSION: semver::Version = semver::Version::new(0, 8,
const FIRST_VIA_IR_VERSION: semver::Version = semver::Version::new(0, 8, 13);
/// The last supported version of `solc`.
pub(crate) const LAST_SUPPORTED_VERSION: semver::Version = semver::Version::new(0, 8, 26);
pub(crate) const LAST_SUPPORTED_VERSION: semver::Version = semver::Version::new(0, 8, 28);
/// The Solidity compiler.
pub trait Compiler {