Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
sqfasd committed Sep 11, 2017
1 parent aceac58 commit b621910
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function verifyGenesisBlock(scope, block) {
function main() {
process.stdin.resume();

var version = '1.3.1';
var version = '1.3.2';
program
.version(version)
.option('-c, --config <path>', 'Config file path')
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": "asch",
"version": "1.3.1",
"version": "1.3.2",
"private": true,
"scripts": {
"start": "node app.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core/peer.js
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ Peer.prototype.isCompatible = function (version) {
if (library.config.netVersion == 'testnet') {
compatibleVersion = '1.2.3';
} else if (library.config.netVersion == 'mainnet') {
compatibleVersion = '1.3.0';
compatibleVersion = '1.3.1';
}
var numsCompatible = compatibleVersion.split('.').map(Number);
for (var i = 0; i < nums.length; ++i) {
Expand Down

0 comments on commit b621910

Please sign in to comment.