Skip to content

Commit

Permalink
bump pragma version
Browse files Browse the repository at this point in the history
  • Loading branch information
killroy192 committed Jul 22, 2024
1 parent b8bdb4d commit c112ebe
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Miller.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
pragma solidity ^0.8.20;

import {Context} from "@openzeppelin/contracts/utils/Context.sol";
import {IERC20Permit} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/Miller.t.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.16;
pragma solidity ^0.8.20;

// solhint-disable no-global-import
// solhint-disable no-console
Expand Down
2 changes: 1 addition & 1 deletion test/mocks/MockERC20.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.16;
pragma solidity ^0.8.20;

import {ERC20Permit, ERC20} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/utils/SigUtils.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
pragma solidity ^0.8.20;

contract SigUtils {
bytes32 internal DOMAIN_SEPARATOR;
Expand Down

0 comments on commit c112ebe

Please sign in to comment.