Bump package and contracts interfaces version prior to 6.0.0 (#629)

This commit is contained in:
Kirill Fedoseev 2021-08-20 14:14:21 +03:00 committed by GitHub
parent 93b1afbe67
commit 39f5835198
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -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 */

View File

@ -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
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "tokenbridge-contracts",
"version": "6.0.0-rc1",
"version": "6.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "tokenbridge-contracts",
"version": "6.0.0-rc1",
"version": "6.0.0",
"description": "Bridge",
"main": "index.js",
"scripts": {