Skip to content

Commit

Permalink
Bump versions of changed contracts since last release (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
k1rill-fedoseev committed Dec 2, 2020
1 parent 79ae98c commit 24e73c3
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Expand Up @@ -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);
}

/**
Expand Down
Expand Up @@ -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) {
Expand Down
Expand Up @@ -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) {
Expand Down
Expand Up @@ -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);
}

/**
Expand Down
Expand Up @@ -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);
}
}
Expand Up @@ -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);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion 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
@@ -1,6 +1,6 @@
{
"name": "tokenbridge-contracts",
"version": "5.5.0",
"version": "5.6.0-rc0",
"description": "Bridge",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 24e73c3

Please sign in to comment.