Skip to content

Commit 113254b

Browse files
committed
setting a min version for exported libraries
1 parent 341024f commit 113254b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

contracts/lib/SafeMathInt.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ SOFTWARE.
2424
*/
2525

2626
// SPDX-License-Identifier: GPL-3.0-or-later
27-
pragma solidity 0.8.4;
27+
pragma solidity ^0.8.4;
2828

2929
/**
3030
* @title SafeMathInt

contracts/lib/Select.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: GPL-3.0-or-later
2-
pragma solidity 0.8.4;
2+
pragma solidity ^0.8.4;
33

44
/**
55
* @title Select

contracts/lib/UInt256Lib.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: GPL-3.0-or-later
2-
pragma solidity 0.8.4;
2+
pragma solidity ^0.8.4;
33

44
/**
55
* @title Various utilities useful for uint256.

0 commit comments

Comments
 (0)