Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
MaciejBaj committed Sep 17, 2018
1 parent af1de56 commit 77ee83c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"wsPort": 8001,
"httpPort": 8000,
"address": "0.0.0.0",
"version": "1.0.2",
"version": "1.0.3",
"minVersion": ">=1.0.0",
"fileLogLevel": "info",
"logFileName": "logs/lisk.log",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lisk",
"version": "1.0.2",
"version": "1.0.3",
"description": "Lisk blockchain application platform",
"author":
"Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
Expand Down
4 changes: 2 additions & 2 deletions scripts/update_config.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ console.info('Starting configuration migration...');
const oldConfig = JSON.parse(fs.readFileSync(oldConfigPath, 'utf8'));
const newConfig = JSON.parse(fs.readFileSync(newConfigPath, 'utf8'));

// 1.0.1 and 1.0.2 doesn't add any changes to 1.0.0 config.json
if (oldConfig.version === '1.0.0' || oldConfig.version === '1.0.1') {
// 1.0.1, 1.0.2, 1.0.3 doesn't add any changes to 1.0.0 config.json
if (oldConfig.version === '1.0.0' || oldConfig.version === '1.0.1' || oldConfig.version === '1.0.2') {
copyTheConfigFile();
// No further changes required
process.exit(0);
Expand Down

0 comments on commit 77ee83c

Please sign in to comment.