From cce7bb90e2cc2b059314ba8dde7492c878d79bb5 Mon Sep 17 00:00:00 2001 From: Philippe Gonday <philippe.g@tokeny.com> Date: Wed, 26 Jun 2024 15:43:15 +0200 Subject: [PATCH] OID-49 update solidity version with caret on interfaces --- contracts/interface/IClaimIssuer.sol | 2 +- contracts/interface/IERC734.sol | 2 +- contracts/interface/IERC735.sol | 2 +- contracts/interface/IIdentity.sol | 2 +- contracts/interface/IImplementationAuthority.sol | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/contracts/interface/IClaimIssuer.sol b/contracts/interface/IClaimIssuer.sol index 31617d1..c056cc1 100644 --- a/contracts/interface/IClaimIssuer.sol +++ b/contracts/interface/IClaimIssuer.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0 -pragma solidity 0.8.17; +pragma solidity ^0.8.17; import "./IIdentity.sol"; diff --git a/contracts/interface/IERC734.sol b/contracts/interface/IERC734.sol index e3c84d2..2487d39 100644 --- a/contracts/interface/IERC734.sol +++ b/contracts/interface/IERC734.sol @@ -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. diff --git a/contracts/interface/IERC735.sol b/contracts/interface/IERC735.sol index ddf4186..0944e19 100644 --- a/contracts/interface/IERC735.sol +++ b/contracts/interface/IERC735.sol @@ -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. diff --git a/contracts/interface/IIdentity.sol b/contracts/interface/IIdentity.sol index 780a0fe..241833f 100644 --- a/contracts/interface/IIdentity.sol +++ b/contracts/interface/IIdentity.sol @@ -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"; diff --git a/contracts/interface/IImplementationAuthority.sol b/contracts/interface/IImplementationAuthority.sol index 30704ae..11cee8f 100644 --- a/contracts/interface/IImplementationAuthority.sol +++ b/contracts/interface/IImplementationAuthority.sol @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-3.0 -pragma solidity 0.8.17; +pragma solidity ^0.8.17; interface IImplementationAuthority {