Skip to content

Commit

Permalink
⚙️ Update to solidity 0.8.25
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyrharper committed May 25, 2024
1 parent 0a5f854 commit dfe56b1
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ src = 'src'
test = 'test/'
out = 'out'
libs = ['lib']
solc_version = "0.8.18"
solc_version = "0.8.25"
optimizer = true
optimizer_runs = 1_000_000

Expand Down
2 changes: 1 addition & 1 deletion script/Deploy.s.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.18;
pragma solidity 0.8.25;

import {BaseGoerliParameters} from
"script/utils/parameters/BaseGoerliParameters.sol";
Expand Down
2 changes: 1 addition & 1 deletion script/utils/parameters/BaseGoerliParameters.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.18;
pragma solidity 0.8.25;

contract BaseGoerliParameters {}
2 changes: 1 addition & 1 deletion script/utils/parameters/BaseParameters.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.18;
pragma solidity 0.8.25;

contract BaseParameters {}
2 changes: 1 addition & 1 deletion script/utils/parameters/OptimismGoerliParameters.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.18;
pragma solidity 0.8.25;

contract OptimismGoerliParameters {}
2 changes: 1 addition & 1 deletion script/utils/parameters/OptimismParameters.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.18;
pragma solidity 0.8.25;

contract OptimismParameters {}
2 changes: 1 addition & 1 deletion src/Counter.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
pragma solidity 0.8.25;

/// @title Kwenta Example Contract
/// @notice Responsible for counting
Expand Down
2 changes: 1 addition & 1 deletion test/Counter.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
pragma solidity 0.8.25;

import {Bootstrap} from "test/utils/Bootstrap.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/utils/Bootstrap.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.18;
pragma solidity 0.8.25;

import {console2} from "lib/forge-std/src/console2.sol";
import {
Expand Down

0 comments on commit dfe56b1

Please sign in to comment.