Skip to content

Commit

Permalink
Bump version to 5.0.2 before merging to master (#438)
Browse files Browse the repository at this point in the history
  • Loading branch information
akolotov committed Jun 16, 2020
1 parent df69383 commit 7f89095
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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 7f89095

Please sign in to comment.