diff --git a/gui/index.html b/gui/index.html index 3e8593d3b3e38d4524c99e04fef9e0d8006cc89f..0f323a51a729ddaede5fdc12576f1e2253d52ffc 100644 --- a/gui/index.html +++ b/gui/index.html @@ -3,7 +3,7 @@ <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <title>Duniter 1.5.9</title> + <title>Duniter 1.6.0</title> <style> html { font-family: "Courier New", Courier, monospace; diff --git a/package.json b/package.json index b14f760bf8a72d79e886997d4bf30ad969828861..eb86965de7c51de920a558beac04fad64458e933 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "duniter", - "version": "1.5.9", + "version": "1.6.0", "engines": { "node": ">=6.11.1", "npm": ">=3.10" @@ -12,7 +12,7 @@ "node-main": "./bin/duniter", "window": { "icon": "duniter.png", - "title": "v1.5.9", + "title": "v1.6.0", "width": 800, "height": 800, "min_width": 750, diff --git a/release/arch/debian/package/DEBIAN/control b/release/arch/debian/package/DEBIAN/control index d4eb71385ca0d50e0f29fc2b961d0298e1a50a91..21fcce9478e559b6207cdcac8b4788a5e27b07ea 100644 --- a/release/arch/debian/package/DEBIAN/control +++ b/release/arch/debian/package/DEBIAN/control @@ -1,5 +1,5 @@ Package: duniter -Version: 1.5.9 +Version: 1.6.0 Depends: unzip Section: misc Priority: optional diff --git a/release/arch/windows/duniter.iss b/release/arch/windows/duniter.iss index a92d22bdbb7ec94c2344aeadee9430bd288dc325..50dcae9737677a8b68c78427b9ac895a65c9f763 100644 --- a/release/arch/windows/duniter.iss +++ b/release/arch/windows/duniter.iss @@ -15,7 +15,7 @@ #error "Unable to find MyAppExe" #endif -#define MyAppVerStr "v1.5.9" +#define MyAppVerStr "v1.6.0" [Setup] AppName={#MyAppName} diff --git a/test/integration/branches.js b/test/integration/branches.js index a7700cfbbba75924734d75c662ba465cdd002e64..9efe932c848ca5b3a48f0ac48fd3fef3b6d8323d 100644 --- a/test/integration/branches.js +++ b/test/integration/branches.js @@ -51,7 +51,7 @@ describe("Branches", () => co(function*() { it('should have a 3 blocks fork window size', function() { return expectAnswer(rp('http://127.0.0.1:7778/node/summary', { json: true }), function(res) { res.should.have.property('duniter').property('software').equal('duniter'); - res.should.have.property('duniter').property('version').equal('1.5.9'); + res.should.have.property('duniter').property('version').equal('1.6.0'); res.should.have.property('duniter').property('forkWindowSize').equal(3); }); });