Bump versions of changed contracts since last release (#564)
This commit is contained in:
parent
79ae98c64f
commit
24e73c3bf4
|
@ -50,7 +50,7 @@ contract BasicAMBErc20ToNative is Initializable, Upgradeable, Claimable, Version
|
|||
* @return patch value of the version
|
||||
*/
|
||||
function getBridgeInterfacesVersion() external pure returns (uint64 major, uint64 minor, uint64 patch) {
|
||||
return (1, 1, 1);
|
||||
return (1, 2, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -96,7 +96,7 @@ contract BasicAMBErc677ToErc677 is
|
|||
}
|
||||
|
||||
function getBridgeInterfacesVersion() external pure returns (uint64 major, uint64 minor, uint64 patch) {
|
||||
return (1, 3, 0);
|
||||
return (1, 4, 0);
|
||||
}
|
||||
|
||||
function getBridgeMode() external pure returns (bytes4 _data) {
|
||||
|
|
|
@ -4,7 +4,7 @@ import "./BasicAMBErc677ToErc677.sol";
|
|||
|
||||
contract BasicStakeTokenMediator is BasicAMBErc677ToErc677 {
|
||||
function getBridgeInterfacesVersion() external pure returns (uint64 major, uint64 minor, uint64 patch) {
|
||||
return (1, 2, 0);
|
||||
return (1, 3, 0);
|
||||
}
|
||||
|
||||
function getBridgeMode() external pure returns (bytes4 _data) {
|
||||
|
|
|
@ -61,7 +61,7 @@ contract BasicAMBNativeToErc20 is
|
|||
* @return patch value of the version
|
||||
*/
|
||||
function getBridgeInterfacesVersion() external pure returns (uint64 major, uint64 minor, uint64 patch) {
|
||||
return (1, 1, 0);
|
||||
return (1, 2, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -17,6 +17,6 @@ contract VersionableAMB is VersionableBridge {
|
|||
* @return (major, minor, patch) version triple
|
||||
*/
|
||||
function getBridgeInterfacesVersion() external pure returns (uint64 major, uint64 minor, uint64 patch) {
|
||||
return (5, 4, 0);
|
||||
return (5, 5, 0);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -58,7 +58,7 @@ contract BasicMultiAMBErc20ToErc677 is
|
|||
* @return patch value of the version
|
||||
*/
|
||||
function getBridgeInterfacesVersion() external pure returns (uint64 major, uint64 minor, uint64 patch) {
|
||||
return (1, 2, 0);
|
||||
return (1, 3, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "tokenbridge-contracts",
|
||||
"version": "5.5.0",
|
||||
"version": "5.6.0-rc0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "tokenbridge-contracts",
|
||||
"version": "5.5.0",
|
||||
"version": "5.6.0-rc0",
|
||||
"description": "Bridge",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in New Issue