Skip to content

Commit

Permalink
Branch v3.0.0 (#6)
Browse files Browse the repository at this point in the history
Co-authored-by: Jan-Paul Azucena <[email protected]>
Co-authored-by: Nathan Sala <[email protected]>
  • Loading branch information
3 people authored Jun 17, 2020
1 parent 19e1aab commit fd81eb7
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion contracts/Migrations.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.8;
pragma solidity 0.6.8;

contract Migrations {
address public owner;
Expand Down
2 changes: 1 addition & 1 deletion contracts/metatx/ERC20Fees.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.8;
pragma solidity 0.6.8;

import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/GSN/GSNRecipient.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/mocks/token/ERC20/ERC20MetaMock.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.8;
pragma solidity 0.6.8;

import "../../../metatx/ERC20Fees.sol";
import "../../../token/ERC20/ERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/mocks/token/ERC20/ERC20Mock.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.8;
pragma solidity 0.6.8;

import "../../../token/ERC20/ERC20.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/mocks/token/ERC20/ERC20WithOperatorsMock.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.8;
pragma solidity 0.6.8;

import "../../../token/ERC20/ERC20WithOperators.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/token/ERC20/ERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.8;
pragma solidity 0.6.8;

import "@openzeppelin/contracts/GSN/Context.sol";
import "@openzeppelin/contracts/introspection/ERC165.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/token/ERC20/ERC20WithOperators.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.8;
pragma solidity 0.6.8;

import "@animoca/ethereum-contracts-core_library/contracts/access/WhitelistedOperators.sol";
import "./ERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/token/ERC20/IERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.8;
pragma solidity 0.6.8;

/**
* @dev Interface of the ERC20 standard as defined in the EIP.
Expand Down
2 changes: 1 addition & 1 deletion contracts/token/ERC20/IERC20Allowance.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.8;
pragma solidity 0.6.8;

/**
* @dev Interface for additional ERC20 allowance features
Expand Down
2 changes: 1 addition & 1 deletion contracts/token/ERC20/IERC20Detailed.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.8;
pragma solidity 0.6.8;

/**
* @dev Interface for commonly used additional ERC20 interfaces
Expand Down

0 comments on commit fd81eb7

Please sign in to comment.