From c112ebe1781ee10089084df7e79c34493b1aac22 Mon Sep 17 00:00:00 2001 From: Dzmitry Lahunouski Date: Mon, 22 Jul 2024 23:10:04 +0100 Subject: [PATCH] bump pragma version --- src/Miller.sol | 2 +- test/Miller.t.sol | 2 +- test/mocks/MockERC20.sol | 2 +- test/utils/SigUtils.sol | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Miller.sol b/src/Miller.sol index ff87a95..2a34af4 100644 --- a/src/Miller.sol +++ b/src/Miller.sol @@ -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"; diff --git a/test/Miller.t.sol b/test/Miller.t.sol index a5045ec..5710982 100644 --- a/test/Miller.t.sol +++ b/test/Miller.t.sol @@ -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 diff --git a/test/mocks/MockERC20.sol b/test/mocks/MockERC20.sol index 1213204..61b6dbd 100644 --- a/test/mocks/MockERC20.sol +++ b/test/mocks/MockERC20.sol @@ -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"; diff --git a/test/utils/SigUtils.sol b/test/utils/SigUtils.sol index 9ba5bb3..c60c2f6 100644 --- a/test/utils/SigUtils.sol +++ b/test/utils/SigUtils.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -pragma solidity ^0.8.16; +pragma solidity ^0.8.20; contract SigUtils { bytes32 internal DOMAIN_SEPARATOR;