Skip to content

Commit 1f7bc6e

Browse files
Bump solc from 0.8.9 to 0.8.10 (#611)
* Bump solc from 0.8.9 to 0.8.10 Bumps [solc](https://github.com/ethereum/solc-js) from 0.8.9 to 0.8.10. - [Release notes](https://github.com/ethereum/solc-js/releases) - [Commits](argotorg/solc-js@v0.8.9...v0.8.10) --- updated-dependencies: - dependency-name: solc dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * passing tests Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Klaus Hott <klahott@gmail.com>
1 parent 4730b38 commit 1f7bc6e

20 files changed

+60
-60
lines changed

package-lock.json

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

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.9;
2+
pragma solidity 0.8.10;
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
@@ -9,7 +9,7 @@ printWidth: 80
99
| printWidth
1010
=====================================input======================================
1111
// SPDX-License-Identifier: MIT
12-
pragma solidity 0.8.9;
12+
pragma solidity 0.8.10;
1313
1414
contract VariableTypesMixed {
1515
uint256 public a;
@@ -47,7 +47,7 @@ contract VariableTypesMixed {
4747
4848
=====================================output=====================================
4949
// SPDX-License-Identifier: MIT
50-
pragma solidity 0.8.9;
50+
pragma solidity 0.8.10;
5151
5252
contract VariableTypesMixed {
5353
uint public a;
@@ -95,7 +95,7 @@ printWidth: 80
9595
| printWidth
9696
=====================================input======================================
9797
// SPDX-License-Identifier: MIT
98-
pragma solidity 0.8.9;
98+
pragma solidity 0.8.10;
9999
100100
contract VariableTypesMixed {
101101
uint256 public a;
@@ -133,7 +133,7 @@ contract VariableTypesMixed {
133133
134134
=====================================output=====================================
135135
// SPDX-License-Identifier: MIT
136-
pragma solidity 0.8.9;
136+
pragma solidity 0.8.10;
137137
138138
contract VariableTypesMixed {
139139
uint256 public a;
@@ -180,7 +180,7 @@ printWidth: 80
180180
| printWidth
181181
=====================================input======================================
182182
// SPDX-License-Identifier: MIT
183-
pragma solidity 0.8.9;
183+
pragma solidity 0.8.10;
184184
185185
contract VariableTypesMixed {
186186
uint256 public a;
@@ -218,7 +218,7 @@ contract VariableTypesMixed {
218218
219219
=====================================output=====================================
220220
// SPDX-License-Identifier: MIT
221-
pragma solidity 0.8.9;
221+
pragma solidity 0.8.10;
222222
223223
contract VariableTypesMixed {
224224
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.9;
2+
pragma solidity 0.8.10;
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
@@ -9,7 +9,7 @@ singleQuote: false
99
| printWidth
1010
=====================================input======================================
1111
// SPDX-License-Identifier: MIT
12-
pragma solidity 0.8.9;
12+
pragma solidity 0.8.10;
1313
1414
contract HexLiteral {
1515
bytes8 hex1 = hex'DeadBeef';
@@ -18,7 +18,7 @@ contract HexLiteral {
1818
1919
=====================================output=====================================
2020
// SPDX-License-Identifier: MIT
21-
pragma solidity 0.8.9;
21+
pragma solidity 0.8.10;
2222
2323
contract HexLiteral {
2424
bytes8 hex1 = hex"DeadBeef";
@@ -37,7 +37,7 @@ singleQuote: true
3737
| printWidth
3838
=====================================input======================================
3939
// SPDX-License-Identifier: MIT
40-
pragma solidity 0.8.9;
40+
pragma solidity 0.8.10;
4141
4242
contract HexLiteral {
4343
bytes8 hex1 = hex'DeadBeef';
@@ -46,7 +46,7 @@ contract HexLiteral {
4646
4747
=====================================output=====================================
4848
// SPDX-License-Identifier: MIT
49-
pragma solidity 0.8.9;
49+
pragma solidity 0.8.10;
5050
5151
contract HexLiteral {
5252
bytes8 hex1 = hex'DeadBeef';

tests/format/ModifierInvocations/ModifierInvocations.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.9;
2+
pragma solidity 0.8.10;
33

44
contract ModifierDefinitions {
55
// We enforce the use of parentheses in modifiers without parameters.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ printWidth: 80
77
| printWidth
88
=====================================input======================================
99
// SPDX-License-Identifier: MIT
10-
pragma solidity 0.8.9;
10+
pragma solidity 0.8.10;
1111
1212
contract ModifierDefinitions {
1313
// We enforce the use of parentheses in modifiers without parameters.
@@ -26,7 +26,7 @@ contract ModifierInvocations is ModifierDefinitions {
2626
2727
=====================================output=====================================
2828
// SPDX-License-Identifier: MIT
29-
pragma solidity 0.8.9;
29+
pragma solidity 0.8.10;
3030
3131
contract ModifierDefinitions {
3232
// We enforce the use of parentheses in modifiers without parameters.

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.9;
2+
pragma solidity 0.8.10;
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.9;
2+
pragma solidity 0.8.10;
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.9;
2+
pragma solidity 0.8.10;
33

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

0 commit comments

Comments
 (0)