Skip to content

Commit

Permalink
OID-49 update solidity version with caret on interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
pgonday committed Jun 26, 2024
1 parent a483cda commit cce7bb9
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 cce7bb9

Please sign in to comment.