Skip to content

Commit

Permalink
feat: upgrade to 0.8.24
Browse files Browse the repository at this point in the history
  • Loading branch information
roderik committed Mar 6, 2024
1 parent 5081255 commit 3436ce6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ btp = "${BTP_RPC_URL}"
test = "test"
out = "out"
libs = ["lib"]
solc = "0.8.19"
solc = "0.8.24"
optimizer = true
optimizer_runs = 10_000
gas_reports = ["*"]
Expand Down
2 changes: 1 addition & 1 deletion script/Counter.s.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.24;

import {Script, console} from "forge-std/Script.sol";
import "../src/Counter.sol";
Expand Down
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: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.24;

contract Counter {
uint256 public number;
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: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.24;

import {Test, console} from "forge-std/Test.sol";
import {Counter} from "../src/Counter.sol";
Expand Down

0 comments on commit 3436ce6

Please sign in to comment.