Skip to content

Commit

Permalink
support solidity 0.8.18 (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
hamdiallam authored Feb 14, 2023
1 parent 2e07480 commit ca49298
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.0.7
### Changed
- Extended Solidity support to v0.8.18

## 2.0.6
### Changed
- Extended Solidity support to v0.8.17
Expand Down
2 changes: 1 addition & 1 deletion contracts/Helper.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: Apache-2.0

pragma solidity >=0.5.0 <0.8.17;
pragma solidity >=0.5.0 <=0.8.18;

/*
* Used to proxy function calls to the RLPReader for testing
Expand Down
2 changes: 1 addition & 1 deletion contracts/Migrations.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: Apache-2.0

pragma solidity >=0.5.0 <0.8.17;
pragma solidity >=0.5.0 <=0.8.18;

contract Migrations {
address public owner;
Expand Down
2 changes: 1 addition & 1 deletion contracts/RLPReader.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @author Hamdi Allam [email protected]
* Please reach out with any questions or concerns
*/
pragma solidity >=0.5.10 <0.8.17;
pragma solidity >=0.5.10 <=0.8.18;

library RLPReader {
uint8 constant STRING_SHORT_START = 0x80;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "solidity-rlp",
"author": "Hamdi Allam",
"version": "2.0.6",
"version": "2.0.7",
"description": "solidity rlp encoder/decoder",
"keywords": [
"solidity",
Expand Down
2 changes: 1 addition & 1 deletion truffle-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
},
compilers: {
solc: {
version: "<0.8.17"
version: "0.8.18"
}
}
};

0 comments on commit ca49298

Please sign in to comment.