Skip to content

Commit

Permalink
fix!: set min pragma to 0.8.5 because of bytes -> bytesN conversi…
Browse files Browse the repository at this point in the history
…on feature
  • Loading branch information
CJ42 committed Sep 20, 2023
1 parent d74c171 commit dcfbba4
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion implementations/contracts/ERC725.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.8.4;
pragma solidity ^0.8.5;

// modules
import {ERC165} from "@openzeppelin/contracts/utils/introspection/ERC165.sol";
Expand Down
2 changes: 1 addition & 1 deletion implementations/contracts/ERC725Init.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.8.4;
pragma solidity ^0.8.5;

// modules
import {ERC725InitAbstract} from "./ERC725InitAbstract.sol";
Expand Down
2 changes: 1 addition & 1 deletion implementations/contracts/ERC725InitAbstract.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.8.4;
pragma solidity ^0.8.5;

// modules
import {ERC165} from "@openzeppelin/contracts/utils/introspection/ERC165.sol";
Expand Down
2 changes: 1 addition & 1 deletion implementations/contracts/ERC725X.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;
pragma solidity ^0.8.5;

// modules
import {OwnableUnset} from "./custom/OwnableUnset.sol";
Expand Down
2 changes: 1 addition & 1 deletion implementations/contracts/ERC725XCore.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;
pragma solidity ^0.8.5;

// interfaces
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
Expand Down
2 changes: 1 addition & 1 deletion implementations/contracts/ERC725XInit.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;
pragma solidity ^0.8.5;

// modules
import {ERC725XInitAbstract} from "./ERC725XInitAbstract.sol";
Expand Down
2 changes: 1 addition & 1 deletion implementations/contracts/ERC725XInitAbstract.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;
pragma solidity ^0.8.5;

// modules
import {
Expand Down
2 changes: 1 addition & 1 deletion implementations/contracts/errors.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pragma solidity ^0.8.4;
error OwnableCannotSetZeroAddressAsOwner();

/**
* @dev Reverts when the only the owner is allowed to call the function.
* @dev Reverts when only the owner is allowed to call the function.
* @param callerAddress The address that tried to make the call.
*/
error OwnableCallerNotTheOwner(address callerAddress);
Expand Down

0 comments on commit dcfbba4

Please sign in to comment.