Skip to content

Commit d58f1d6

Browse files
Bump solc from 0.8.5 to 0.8.6 (#543)
* Bump solc from 0.8.5 to 0.8.6 Bumps [solc](https://github.com/ethereum/solc-js) from 0.8.5 to 0.8.6. - [Release notes](https://github.com/ethereum/solc-js/releases) - [Commits](argotorg/solc-js@v0.8.5...v0.8.6) --- updated-dependencies: - dependency-name: solc dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * fixing Tests and updating deps Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Klaus Hott <[email protected]>
1 parent e1f462e commit d58f1d6

19 files changed

Lines changed: 371 additions & 1971 deletions

package-lock.json

Lines changed: 319 additions & 1919 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,19 +63,19 @@
6363
"devDependencies": {
6464
"cross-env": "^7.0.3",
6565
"dir-to-object": "^2.0.0",
66-
"eslint": "^7.28.0",
66+
"eslint": "^7.29.0",
6767
"eslint-config-airbnb-base": "^14.2.1",
6868
"eslint-config-prettier": "^8.3.0",
69-
"eslint-plugin-import": "^2.23.3",
70-
"jest": "^27.0.1",
69+
"eslint-plugin-import": "^2.23.4",
70+
"jest": "^27.0.5",
7171
"jest-mock-now": "^1.3.0",
7272
"jest-snapshot-serializer-ansi": "^1.0.0",
7373
"jest-snapshot-serializer-raw": "^1.2.0",
7474
"jest-watch-typeahead": "^0.6.4",
7575
"lines-and-columns": "^1.1.6",
7676
"outdent": "^0.8.0",
7777
"prettier": "^2.3.1",
78-
"solc": "^0.8.5"
78+
"solc": "^0.8.6"
7979
},
8080
"dependencies": {
8181
"@solidity-parser/parser": "^0.13.2",

tests/format/ExplicitVariableTypes/ExplicitVariableTypes.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.5;
2+
pragma solidity 0.8.6;
33

44
contract VariableTypesMixed {
55
uint256 public a;

tests/format/ExplicitVariableTypes/__snapshots__/jsfmt.spec.js.snap

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ printWidth: 80
88
| printWidth
99
=====================================input======================================
1010
// SPDX-License-Identifier: MIT
11-
pragma solidity 0.8.5;
11+
pragma solidity 0.8.6;
1212
1313
contract VariableTypesMixed {
1414
uint256 public a;
@@ -46,7 +46,7 @@ contract VariableTypesMixed {
4646
4747
=====================================output=====================================
4848
// SPDX-License-Identifier: MIT
49-
pragma solidity 0.8.5;
49+
pragma solidity 0.8.6;
5050
5151
contract VariableTypesMixed {
5252
uint public a;
@@ -93,7 +93,7 @@ printWidth: 80
9393
| printWidth
9494
=====================================input======================================
9595
// SPDX-License-Identifier: MIT
96-
pragma solidity 0.8.5;
96+
pragma solidity 0.8.6;
9797
9898
contract VariableTypesMixed {
9999
uint256 public a;
@@ -131,7 +131,7 @@ contract VariableTypesMixed {
131131
132132
=====================================output=====================================
133133
// SPDX-License-Identifier: MIT
134-
pragma solidity 0.8.5;
134+
pragma solidity 0.8.6;
135135
136136
contract VariableTypesMixed {
137137
uint256 public a;
@@ -177,7 +177,7 @@ printWidth: 80
177177
| printWidth
178178
=====================================input======================================
179179
// SPDX-License-Identifier: MIT
180-
pragma solidity 0.8.5;
180+
pragma solidity 0.8.6;
181181
182182
contract VariableTypesMixed {
183183
uint256 public a;
@@ -215,7 +215,7 @@ contract VariableTypesMixed {
215215
216216
=====================================output=====================================
217217
// SPDX-License-Identifier: MIT
218-
pragma solidity 0.8.5;
218+
pragma solidity 0.8.6;
219219
220220
contract VariableTypesMixed {
221221
uint256 public a;

tests/format/HexLiteral/HexLiteral.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.5;
2+
pragma solidity 0.8.6;
33

44
contract HexLiteral {
55
bytes8 hex1 = hex'DeadBeef';

tests/format/HexLiteral/__snapshots__/jsfmt.spec.js.snap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ singleQuote: false
88
| printWidth
99
=====================================input======================================
1010
// SPDX-License-Identifier: MIT
11-
pragma solidity 0.8.5;
11+
pragma solidity 0.8.6;
1212
1313
contract HexLiteral {
1414
bytes8 hex1 = hex'DeadBeef';
@@ -17,7 +17,7 @@ contract HexLiteral {
1717
1818
=====================================output=====================================
1919
// SPDX-License-Identifier: MIT
20-
pragma solidity 0.8.5;
20+
pragma solidity 0.8.6;
2121
2222
contract HexLiteral {
2323
bytes8 hex1 = hex"DeadBeef";
@@ -35,7 +35,7 @@ singleQuote: true
3535
| printWidth
3636
=====================================input======================================
3737
// SPDX-License-Identifier: MIT
38-
pragma solidity 0.8.5;
38+
pragma solidity 0.8.6;
3939
4040
contract HexLiteral {
4141
bytes8 hex1 = hex'DeadBeef';
@@ -44,7 +44,7 @@ contract HexLiteral {
4444
4545
=====================================output=====================================
4646
// SPDX-License-Identifier: MIT
47-
pragma solidity 0.8.5;
47+
pragma solidity 0.8.6;
4848
4949
contract HexLiteral {
5050
bytes8 hex1 = hex'DeadBeef';

tests/format/Parentheses/AddNoParentheses.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.5;
2+
pragma solidity 0.8.6;
33

44
contract AddNoParentheses {
55
function addAdd(uint256 a, uint256 b, uint256 c)

tests/format/Parentheses/BitAndNoParentheses.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.5;
2+
pragma solidity 0.8.6;
33

44
contract BitAndNoParentheses {
55
function bitAndAdd(uint256 a, uint256 b, uint256 c)

tests/format/Parentheses/BitOrNoParentheses.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.5;
2+
pragma solidity 0.8.6;
33

44
contract BitOrNoParentheses {
55
function bitOrAdd(uint256 a, uint256 b, uint256 c)

tests/format/Parentheses/BitXorNoParentheses.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.5;
2+
pragma solidity 0.8.6;
33

44
contract BitXorNoParentheses {
55
function bitXorAdd(uint256 a, uint256 b, uint256 c)

0 commit comments

Comments
 (0)