Skip to content

Commit 555ca8e

Browse files
committed
Bump versions of evm, solc, and forge-std
* Bump the EVM target to cancun * Bump the version of solc to 0.8.29 * Bump forge-std to v1.9.7
1 parent 0fdbe76 commit 555ca8e

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

foundry.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[profile.default]
2-
evm_version = "paris"
2+
evm_version = "cancun"
33
optimizer = true
44
optimizer_runs = 10_000_000
5-
solc_version = "0.8.28"
5+
solc_version = "0.8.29"
66
verbosity = 3
77

88
[profile.ci]

script/Deploy.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: UNLICENSED
22
// slither-disable-start reentrancy-benign
33

4-
pragma solidity 0.8.28;
4+
pragma solidity 0.8.29;
55

66
import {Script} from "forge-std/Script.sol";
77
import {Counter} from "src/Counter.sol";

src/Counter.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: UNLICENSED
2-
pragma solidity 0.8.28;
2+
pragma solidity 0.8.29;
33

44
contract Counter {
55
uint256 public number;

test/Counter.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: UNLICENSED
2-
pragma solidity 0.8.28;
2+
pragma solidity 0.8.29;
33

44
import {Test, console2} from "forge-std/Test.sol";
55
import {Deploy} from "script/Deploy.s.sol";

0 commit comments

Comments
 (0)