Skip to content

Commit

Permalink
change solidity versions to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquim-verges committed May 19, 2022
1 parent 36818f7 commit 038ee1a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion contracts/ContractDeployer.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.11;
pragma solidity ^0.8.0;

// ========== External imports ==========
import "@openzeppelin/contracts/utils/Create2.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/ContractMetadataRegistry.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.11;
pragma solidity ^0.8.0;

// ========== External imports ==========
import "@openzeppelin/contracts/utils/Multicall.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/ContractPublisher.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.11;
pragma solidity ^0.8.0;

// ========== External imports ==========
import "@openzeppelin/contracts/metatx/ERC2771Context.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/IContractDeployer.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.11;
pragma solidity ^0.8.0;

interface IContractDeployer {
/// @dev Emitted when the registry is paused.
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/IContractMetadataRegistry.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.11;
pragma solidity ^0.8.0;

interface IContractMetadataRegistry {
/// @dev Emitted when a contract metadata is registered
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/IContractPublisher.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.11;
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";

Expand Down

0 comments on commit 038ee1a

Please sign in to comment.