From fe707bf25c73aac60d61ce7fc15c1de7a1788c41 Mon Sep 17 00:00:00 2001 From: Kelvin Fichter Date: Tue, 23 Jul 2024 14:16:22 +0200 Subject: [PATCH] chore: bump Solidity to 0.8.25 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. --- contracts/StatefulSponge.sol | 2 +- contracts/lib/LibKeccak.sol | 2 +- test/LibKeccak.t.sol | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/StatefulSponge.sol b/contracts/StatefulSponge.sol index 1ef1046..c9204a7 100644 --- a/contracts/StatefulSponge.sol +++ b/contracts/StatefulSponge.sol @@ -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"; diff --git a/contracts/lib/LibKeccak.sol b/contracts/lib/LibKeccak.sol index 1fdd0d9..63c202e 100644 --- a/contracts/lib/LibKeccak.sol +++ b/contracts/lib/LibKeccak.sol @@ -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. diff --git a/test/LibKeccak.t.sol b/test/LibKeccak.t.sol index 378d5ad..06a379b 100644 --- a/test/LibKeccak.t.sol +++ b/test/LibKeccak.t.sol @@ -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";