Skip to content

Commit

Permalink
chore: bump Solidity to 0.8.25
Browse files Browse the repository at this point in the history
Bumps the Solidity version to 0.8.25. Starting work on a larger
migration of the entire Solidity codebase to 0.8.25 and this is
one of the holdouts.
  • Loading branch information
smartcontracts committed Jul 23, 2024
1 parent 4f628ec commit fe707bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/StatefulSponge.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
pragma solidity 0.8.25;

import { LibKeccak } from "contracts/lib/LibKeccak.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/lib/LibKeccak.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
pragma solidity 0.8.25;

/// @title LibKeccak
/// @notice An EVM implementation of the Keccak-f[1600] permutation.
Expand Down
2 changes: 1 addition & 1 deletion test/LibKeccak.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
pragma solidity 0.8.25;

import { Test, console2 as console } from "forge-std/Test.sol";
import { TestPlus } from "@solady-test/utils/TestPlus.sol";
Expand Down

0 comments on commit fe707bf

Please sign in to comment.