Skip to content

Commit

Permalink
bump version to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hujw77 committed Jun 3, 2024
1 parent df29e38 commit a62c1a3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@msgport/ormp",
"version": "2.0.0",
"version": "2.1.0",
"description": "Oracle and Relayer based Message Protocol",
"repository": "https://github.com/msgport/ORMP",
"author": "Msgport dev",
Expand Down
2 changes: 1 addition & 1 deletion src/ORMP.sol
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ contract ORMP is ReentrancyGuard, Channel {
constructor(address dao) Channel(dao) {}

function version() public pure returns (string memory) {
return "2.0.0";
return "2.1.0";
}

/// @dev Send a cross-chain message over the endpoint.
Expand Down
2 changes: 1 addition & 1 deletion src/eco/Oracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ contract Oracle is Verifier {
receive() external payable {}

function version() public pure returns (string memory) {
return "2.0.0";
return "2.1.0";
}

/// @dev Only could be called by owner.
Expand Down
2 changes: 1 addition & 1 deletion src/eco/Relayer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ contract Relayer {
}

function version() public pure returns (string memory) {
return "2.0.0";
return "2.1.0";
}

receive() external payable {}
Expand Down
2 changes: 1 addition & 1 deletion tron/ORMP.f.sol
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ contract ORMP is ReentrancyGuard, Channel {
constructor(address dao) Channel(dao) {}

function version() public pure returns (string memory) {
return "2.0.0";
return "2.1.0";
}

/// @dev Send a cross-chain message over the endpoint.
Expand Down

0 comments on commit a62c1a3

Please sign in to comment.