Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
klkvr committed Jul 26, 2024
1 parent b0f6fe6 commit 69cc744
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crates/artifacts/solc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2008,7 +2008,7 @@ mod tests {
("0.8.26", EvmVersion::Homestead, Some(EvmVersion::Homestead)),
("0.8.26", EvmVersion::Shanghai, Some(EvmVersion::Shanghai)),
("0.8.26", EvmVersion::Cancun, Some(EvmVersion::Cancun)),
("0.8.26", EvmVersion::Prague, Some(EvmVersion::Prague)),
("0.8.27", EvmVersion::Prague, Some(EvmVersion::Prague)),
] {
let version = Version::from_str(solc_version).unwrap();
assert_eq!(
Expand Down
6 changes: 1 addition & 5 deletions crates/core/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,7 @@ pub const CANCUN_SOLC: Version = Version::new(0, 8, 24);

/// Prague support
/// TBD
pub const PRAGUE_SOLC: Version = Version::new(0, 8, 26);

/// Prague EOF support
/// TBD
pub const PRAGUE_EOF_SOLC: Version = Version::new(0, 8, 26);
pub const PRAGUE_SOLC: Version = Version::new(0, 8, 27);

// `--base-path` was introduced in 0.6.9 <https://github.com/ethereum/solidity/releases/tag/v0.6.9>
pub static SUPPORTS_BASE_PATH: Lazy<VersionReq> =
Expand Down

0 comments on commit 69cc744

Please sign in to comment.