Skip to content

Commit b240545

Browse files
Bump solc from 0.8.34 to 0.8.35 (#1537)
* Bump solc from 0.8.34 to 0.8.35 Bumps [solc](https://github.com/ethereum/solc-js) from 0.8.34 to 0.8.35. - [Commits](argotorg/solc-js@v0.8.34...v0.8.35) --- updated-dependencies: - dependency-name: solc dependency-version: 0.8.35 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * update package.json --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Klaus <klahott@gmail.com>
1 parent b43d5cd commit b240545

21 files changed

Lines changed: 78 additions & 54 deletions

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@
105105
"jest-snapshot-serializer-ansi": "^2.2.1",
106106
"jest-snapshot-serializer-raw": "^2.0.0",
107107
"jest-watch-typeahead": "^3.0.1",
108-
"knip": "^6.7.0",
108+
"knip": "^6.9.0",
109109
"prettier": "^3.8.3",
110-
"solc": "^0.8.34",
110+
"solc": "^0.8.35",
111111
"ts-loader": "^9.5.7",
112112
"ts-node": "^10.9.2",
113113
"typescript": "^6.0.3",

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.34;
2+
pragma solidity 0.8.35;
33

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

tests/format/HexLiteral/__snapshots__/format.test.js.snap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ singleQuote: false
77
printWidth: 80 (default) |
88
=====================================input======================================
99
// SPDX-License-Identifier: MIT
10-
pragma solidity 0.8.34;
10+
pragma solidity 0.8.35;
1111
1212
contract HexLiteral {
1313
bytes8 hex1 = hex'DeadBeef';
@@ -16,7 +16,7 @@ contract HexLiteral {
1616
1717
=====================================output=====================================
1818
// SPDX-License-Identifier: MIT
19-
pragma solidity 0.8.34;
19+
pragma solidity 0.8.35;
2020
2121
contract HexLiteral {
2222
bytes8 hex1 = hex"DeadBeef";
@@ -33,7 +33,7 @@ singleQuote: true
3333
printWidth: 80 (default) |
3434
=====================================input======================================
3535
// SPDX-License-Identifier: MIT
36-
pragma solidity 0.8.34;
36+
pragma solidity 0.8.35;
3737
3838
contract HexLiteral {
3939
bytes8 hex1 = hex'DeadBeef';
@@ -42,7 +42,7 @@ contract HexLiteral {
4242
4343
=====================================output=====================================
4444
// SPDX-License-Identifier: MIT
45-
pragma solidity 0.8.34;
45+
pragma solidity 0.8.35;
4646
4747
contract HexLiteral {
4848
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.34;
2+
pragma solidity 0.8.35;
33

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

tests/format/ModifierInvocations/__snapshots__/format.test.js.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ parsers: ["slang"]
66
printWidth: 80 (default) |
77
=====================================input======================================
88
// SPDX-License-Identifier: MIT
9-
pragma solidity 0.8.34;
9+
pragma solidity 0.8.35;
1010
1111
contract ModifierDefinitions {
1212
// We enforce the use of parentheses in modifiers without parameters.
@@ -43,7 +43,7 @@ library ModifierInvocationsLibrary {
4343
4444
=====================================output=====================================
4545
// SPDX-License-Identifier: MIT
46-
pragma solidity 0.8.34;
46+
pragma solidity 0.8.35;
4747
4848
contract ModifierDefinitions {
4949
// We enforce the use of parentheses in modifiers without parameters.

tests/format/NumberLiteral/NumberLiteral.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.34;
2+
pragma solidity 0.8.35;
33

44
contract NumberLiteral {
55
function numbers()public {

tests/format/NumberLiteral/__snapshots__/format.test.js.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ parsers: ["slang"]
66
printWidth: 80 (default) |
77
=====================================input======================================
88
// SPDX-License-Identifier: MIT
9-
pragma solidity 0.8.34;
9+
pragma solidity 0.8.35;
1010
1111
contract NumberLiteral {
1212
function numbers()public {
@@ -21,7 +21,7 @@ contract NumberLiteral {
2121
2222
=====================================output=====================================
2323
// SPDX-License-Identifier: MIT
24-
pragma solidity 0.8.34;
24+
pragma solidity 0.8.35;
2525
2626
contract NumberLiteral {
2727
function numbers() public {

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.34;
2+
pragma solidity 0.8.35;
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.34;
2+
pragma solidity 0.8.35;
33

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

0 commit comments

Comments
 (0)