Skip to content

Commit

Permalink
fix: update compiler version
Browse files Browse the repository at this point in the history
  • Loading branch information
dbale-altoros committed Jan 1, 2025
1 parent bdb6ed3 commit 01d3720
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e/05-max-warnings/contracts/Foo.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
pragma solidity >=0.8.24;

contract Foo {
uint256 public constant test1 = 1;
Expand Down
2 changes: 1 addition & 1 deletion e2e/06-formatters/contracts/Foo3.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
pragma solidity >=0.8.24;

contract Foo {
uint256 public constant TEST1 = 1;
Expand Down
2 changes: 1 addition & 1 deletion e2e/06-formatters/helpers/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const foo1Output = [
line: 2,
column: 1,
severity: 'Error',
message: 'Compiler version >=0.6.0 does not satisfy the ^0.8.0 semver requirement',
message: 'Compiler version >=0.6.0 does not satisfy the ^0.8.24 semver requirement',
ruleId: 'compiler-version',
fix: null,
filePath: 'contracts/Foo.sol',
Expand Down

0 comments on commit 01d3720

Please sign in to comment.