Skip to content

Commit

Permalink
Merge c63e40e into df69383
Browse files Browse the repository at this point in the history
  • Loading branch information
akolotov committed Jun 15, 2020
2 parents df69383 + c63e40e commit a6d9d35
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -75,7 +75,7 @@ contract BasicAMBNativeToErc20 is
* @return patch value of the version
*/
function getBridgeInterfacesVersion() external pure returns (uint64 major, uint64 minor, uint64 patch) {
return (1, 0, 0);
return (1, 0, 1);
}

/**
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, 0, 1);
return (5, 0, 2);
}
}
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": "token-bridge-contracts",
"version": "5.0.1",
"version": "5.0.2",
"description": "Bridge",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit a6d9d35

Please sign in to comment.