Skip to content

Commit

Permalink
fix: set compiler pragma to v0.8.4 min
Browse files Browse the repository at this point in the history
feat: upgrade to [email protected]
  • Loading branch information
PaulRBerg committed Jun 15, 2021
1 parent c2e2f04 commit 2625524
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .solhint.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"plugins": ["prettier"],
"rules": {
"code-complexity": ["error", 7],
"compiler-version": ["error", ">=0.8.0"],
"compiler-version": ["error", ">=0.8.4"],
"const-name-snakecase": "off",
"constructor-syntax": "error",
"func-visibility": ["error", { "ignoreConstructors": true }],
Expand Down
2 changes: 1 addition & 1 deletion contracts/Greeter.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
pragma solidity >=0.8.4;

import "hardhat/console.sol";

Expand Down
2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const config: HardhatUserConfig = {
tests: "./test",
},
solidity: {
version: "0.8.4",
version: "0.8.5",
settings: {
metadata: {
// Not including the metadata hash
Expand Down

0 comments on commit 2625524

Please sign in to comment.