From a62c1a3b4ce9d36c115a7544ae325657027d3117 Mon Sep 17 00:00:00 2001 From: echo Date: Mon, 3 Jun 2024 13:55:35 +0800 Subject: [PATCH] bump version to 2.1.0 --- package.json | 2 +- src/ORMP.sol | 2 +- src/eco/Oracle.sol | 2 +- src/eco/Relayer.sol | 2 +- tron/ORMP.f.sol | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index da04d3d..1f25744 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/ORMP.sol b/src/ORMP.sol index d76a59d..a9ecf9f 100644 --- a/src/ORMP.sol +++ b/src/ORMP.sol @@ -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. diff --git a/src/eco/Oracle.sol b/src/eco/Oracle.sol index 29d4d47..08e6520 100644 --- a/src/eco/Oracle.sol +++ b/src/eco/Oracle.sol @@ -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. diff --git a/src/eco/Relayer.sol b/src/eco/Relayer.sol index c12a3ef..53e0f08 100644 --- a/src/eco/Relayer.sol +++ b/src/eco/Relayer.sol @@ -43,7 +43,7 @@ contract Relayer { } function version() public pure returns (string memory) { - return "2.0.0"; + return "2.1.0"; } receive() external payable {} diff --git a/tron/ORMP.f.sol b/tron/ORMP.f.sol index 9152f3c..2a048a9 100644 --- a/tron/ORMP.f.sol +++ b/tron/ORMP.f.sol @@ -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.