Skip to content

Commit

Permalink
build: update solc version (#1439)
Browse files Browse the repository at this point in the history
Signed-off-by: François Bojarski <ceciestunepoubelle@protonmail.ch>
  • Loading branch information
letypequividelespoubelles authored Oct 18, 2024
1 parent 94a8491 commit 7258116
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion testing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ solidity {
}

yul {
solcVersion = "0.8.19"
solcVersion = "0.8.26"
compilerJsonTemplatePath = "src/main/resources/templates/compiler_yul.json.template"
}
2 changes: 1 addition & 1 deletion testing/src/main/solidity/ExecuteStepsFromContractCode.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.26;

import {TestingFrameworkStorageLayout} from "./TestingFrameworkStorageLayout.sol";
import {TestingBase} from "./TestingBase.sol";
Expand Down
2 changes: 1 addition & 1 deletion testing/src/main/solidity/FrameworkEntrypoint.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.26;

import {TestingFrameworkStorageLayout} from "./TestingFrameworkStorageLayout.sol";
import {TestingBase} from "./TestingBase.sol";
Expand Down
2 changes: 1 addition & 1 deletion testing/src/main/solidity/SelfDestructingDeeperCalls.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.26;

import {TestingFrameworkStorageLayout} from "./TestingFrameworkStorageLayout.sol";
import {TestingBase} from "./TestingBase.sol";
Expand Down
2 changes: 1 addition & 1 deletion testing/src/main/solidity/TestSnippet_Create2.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.26;

import {TestingFrameworkStorageLayout} from "./TestingFrameworkStorageLayout.sol";
import {TestingBase} from "./TestingBase.sol";
Expand Down
2 changes: 1 addition & 1 deletion testing/src/main/solidity/TestSnippet_Events.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.26;

import {TestingFrameworkEvents} from "./TestingFrameworkEvents.sol";

Expand Down
2 changes: 1 addition & 1 deletion testing/src/main/solidity/TestSnippet_StorageSetting.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.26;

import {TestingFrameworkStorageLayout} from "./TestingFrameworkStorageLayout.sol";
import {TestingBase} from "./TestingBase.sol";
Expand Down
2 changes: 1 addition & 1 deletion testing/src/main/solidity/TestStorage.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.8.2 <0.9.0;
pragma solidity >=0.8.26 <0.9.0;

/**
* @title TestStorage
Expand Down
2 changes: 1 addition & 1 deletion testing/src/main/solidity/TestingBase.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.26;

/**
* @notice Shared base contract for functions and events relating to call execution and contract creation.
Expand Down
2 changes: 1 addition & 1 deletion testing/src/main/solidity/TestingFrameworkEvents.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.26;

/**
* @notice Shared contract containing framework events.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.26;

/**
* @notice Shared storage layout for all contracts being delegated to.
Expand Down

0 comments on commit 7258116

Please sign in to comment.