Skip to content

Commit

Permalink
feat(smart-contracts): bump PublicLock solc version to 0.8.13 (#8945)
Browse files Browse the repository at this point in the history
* public lock uses solc 0.8.11

* bump to 0.8.13
  • Loading branch information
clemsos authored Jun 2, 2022
1 parent 025527d commit 6bbd5ed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion smart-contracts/contracts/PublicLock.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
pragma solidity ^0.8.13;

import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol';
import '@openzeppelin/contracts-upgradeable/utils/introspection/ERC165StorageUpgradeable.sol';
Expand Down
2 changes: 1 addition & 1 deletion smart-contracts/contracts/UnlockUtils.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity >=0.5.17 <=0.8.7;
pragma solidity >=0.5.17 <=0.8.13;

// This contract provides some utility methods for use with the unlock protocol smart contracts.
// Borrowed from:
Expand Down
1 change: 1 addition & 0 deletions smart-contracts/hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ module.exports = {
{ version: '0.8.2', settings },
{ version: '0.8.4', settings },
{ version: '0.8.7', settings },
{ version: '0.8.13', settings },
],
},
mocha: {
Expand Down

0 comments on commit 6bbd5ed

Please sign in to comment.