Skip to content

Commit

Permalink
Bump solc from 0.8.24 to 0.8.25 (#994)
Browse files Browse the repository at this point in the history
* Bump solc from 0.8.24 to 0.8.25

Bumps [solc](https://github.com/ethereum/solc-js) from 0.8.24 to 0.8.25.
- [Commits](ethereum/solc-js@v0.8.24...v0.8.25)

---
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

---------

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>
  • Loading branch information
dependabot[bot] and Janther committed Mar 17, 2024
1 parent e23332a commit 06c2349
Show file tree
Hide file tree
Showing 21 changed files with 52 additions and 52 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -104,7 +104,7 @@
"lines-and-columns": "^2.0.3",
"prettier": "^3.1.1",
"proxyquire": "^2.1.3",
"solc": "^0.8.24",
"solc": "^0.8.25",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
Expand Down
2 changes: 1 addition & 1 deletion tests/format/HexLiteral/HexLiteral.sol
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;

contract HexLiteral {
bytes8 hex1 = hex'DeadBeef';
Expand Down
8 changes: 4 additions & 4 deletions tests/format/HexLiteral/__snapshots__/jsfmt.spec.js.snap
Expand Up @@ -9,7 +9,7 @@ singleQuote: false
| printWidth
=====================================input======================================
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;
contract HexLiteral {
bytes8 hex1 = hex'DeadBeef';
Expand All @@ -18,7 +18,7 @@ contract HexLiteral {
=====================================output=====================================
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;
contract HexLiteral {
bytes8 hex1 = hex"DeadBeef";
Expand All @@ -37,7 +37,7 @@ singleQuote: true
| printWidth
=====================================input======================================
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;
contract HexLiteral {
bytes8 hex1 = hex'DeadBeef';
Expand All @@ -46,7 +46,7 @@ contract HexLiteral {
=====================================output=====================================
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;
contract HexLiteral {
bytes8 hex1 = hex'DeadBeef';
Expand Down
2 changes: 1 addition & 1 deletion tests/format/ModifierInvocations/ModifierInvocations.sol
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;

contract ModifierDefinitions {
// We enforce the use of parentheses in modifiers without parameters.
Expand Down
Expand Up @@ -7,7 +7,7 @@ printWidth: 80
| printWidth
=====================================input======================================
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;
contract ModifierDefinitions {
// We enforce the use of parentheses in modifiers without parameters.
Expand All @@ -26,7 +26,7 @@ contract ModifierInvocations is ModifierDefinitions {
=====================================output=====================================
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;
contract ModifierDefinitions {
// We enforce the use of parentheses in modifiers without parameters.
Expand Down
2 changes: 1 addition & 1 deletion tests/format/NumberLiteral/NumberLiteral.sol
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;

contract NumberLiteral {
function numbers()public {
Expand Down
4 changes: 2 additions & 2 deletions tests/format/NumberLiteral/__snapshots__/jsfmt.spec.js.snap
Expand Up @@ -7,7 +7,7 @@ printWidth: 80
| printWidth
=====================================input======================================
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;
contract NumberLiteral {
function numbers()public {
Expand All @@ -22,7 +22,7 @@ contract NumberLiteral {
=====================================output=====================================
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;
contract NumberLiteral {
function numbers() public {
Expand Down
2 changes: 1 addition & 1 deletion tests/format/Parentheses/AddNoParentheses.sol
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;

contract AddNoParentheses {
function addAdd(uint256 a, uint256 b, uint256 c)
Expand Down
2 changes: 1 addition & 1 deletion tests/format/Parentheses/BitAndNoParentheses.sol
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;

contract BitAndNoParentheses {
function bitAndAdd(uint256 a, uint256 b, uint256 c)
Expand Down
2 changes: 1 addition & 1 deletion tests/format/Parentheses/BitOrNoParentheses.sol
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;

contract BitOrNoParentheses {
function bitOrAdd(uint256 a, uint256 b, uint256 c)
Expand Down
2 changes: 1 addition & 1 deletion tests/format/Parentheses/BitXorNoParentheses.sol
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;

contract BitXorNoParentheses {
function bitXorAdd(uint256 a, uint256 b, uint256 c)
Expand Down
2 changes: 1 addition & 1 deletion tests/format/Parentheses/DivNoParentheses.sol
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;

contract DivNoParentheses {
function divAdd(uint256 a, uint256 b, uint256 c)
Expand Down
2 changes: 1 addition & 1 deletion tests/format/Parentheses/ExpNoParentheses.sol
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;

contract ExpNoParentheses {
function expAdd(uint256 a, uint256 b, uint256 c)
Expand Down
2 changes: 1 addition & 1 deletion tests/format/Parentheses/LogicNoParentheses.sol
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;

contract LogicNoParentheses {
function orOr(bool a, bool b, bool c) public pure returns (bool) {
Expand Down
2 changes: 1 addition & 1 deletion tests/format/Parentheses/ModNoParentheses.sol
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;

contract ModNoParentheses {
function modAdd(uint256 a, uint256 b, uint256 c)
Expand Down
2 changes: 1 addition & 1 deletion tests/format/Parentheses/MulNoParentheses.sol
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;

contract MulNoParentheses {
function mulAdd(uint256 a, uint256 b, uint256 c)
Expand Down
2 changes: 1 addition & 1 deletion tests/format/Parentheses/ShiftLNoParentheses.sol
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;

contract ShiftLNoParentheses {
function shiftLAdd(uint256 a, uint256 b, uint256 c)
Expand Down
2 changes: 1 addition & 1 deletion tests/format/Parentheses/ShiftRNoParentheses.sol
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;

contract ShiftRNoParentheses {
function shiftRAdd(uint256 a, uint256 b, uint256 c)
Expand Down
2 changes: 1 addition & 1 deletion tests/format/Parentheses/SubNoParentheses.sol
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
pragma solidity 0.8.25;

contract SubNoParentheses {
function subAdd(uint256 a, uint256 b, uint256 c)
Expand Down

0 comments on commit 06c2349

Please sign in to comment.