Skip to content

Commit

Permalink
setting a min version for exported libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
aalavandhan committed Sep 7, 2023
1 parent 341024f commit 113254b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/lib/SafeMathInt.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ SOFTWARE.
*/

// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.4;
pragma solidity ^0.8.4;

/**
* @title SafeMathInt
Expand Down
2 changes: 1 addition & 1 deletion contracts/lib/Select.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.4;
pragma solidity ^0.8.4;

/**
* @title Select
Expand Down
2 changes: 1 addition & 1 deletion contracts/lib/UInt256Lib.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.4;
pragma solidity ^0.8.4;

/**
* @title Various utilities useful for uint256.
Expand Down

0 comments on commit 113254b

Please sign in to comment.