Skip to content

Commit

Permalink
OID-49 update solidity version with caret on interfaces (#101)
Browse files Browse the repository at this point in the history
* 🔖 (v2.2.1) update version (#94)

* OID-49 update solidity version with caret on interfaces

---------

Co-authored-by: Joachim <[email protected]>
  • Loading branch information
pgonday and Joachim-Lebrun authored Jun 27, 2024
1 parent 9b8d73b commit ddfac31
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion contracts/interface/IClaimIssuer.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.17;
pragma solidity ^0.8.17;

import "./IIdentity.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/interface/IERC734.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.17;
pragma solidity ^0.8.17;

/**
* @dev interface of the ERC734 (Key Holder) standard as defined in the EIP.
Expand Down
2 changes: 1 addition & 1 deletion contracts/interface/IERC735.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.17;
pragma solidity ^0.8.17;

/**
* @dev interface of the ERC735 (Claim Holder) standard as defined in the EIP.
Expand Down
2 changes: 1 addition & 1 deletion contracts/interface/IIdentity.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.17;
pragma solidity ^0.8.17;

import "./IERC734.sol";
import "./IERC735.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/interface/IImplementationAuthority.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.17;
pragma solidity ^0.8.17;

interface IImplementationAuthority {

Expand Down

0 comments on commit ddfac31

Please sign in to comment.