Skip to content

Commit

Permalink
Bump package and contracts interfaces version prior to 6.0.0 (#629)
Browse files Browse the repository at this point in the history
  • Loading branch information
k1rill-fedoseev authored Aug 20, 2021
1 parent 93b1afb commit 39f5835
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/upgradeable_contracts/VersionableBridge.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pragma solidity 0.4.24;

contract VersionableBridge {
function getBridgeInterfacesVersion() external pure returns (uint64 major, uint64 minor, uint64 patch) {
return (6, 0, 0);
return (6, 1, 0);
}

/* solcov ignore next */
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 (6, 1, 0);
return (6, 2, 0);
}
}
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": "tokenbridge-contracts",
"version": "6.0.0-rc1",
"version": "6.0.0",
"description": "Bridge",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 39f5835

Please sign in to comment.