diff --git a/gui/index.html b/gui/index.html index 91ab50cfb9d62fef26bdbf2dedd1b640b6747fd9..ef2629ed9066f74bf6f1c851ba4a51e6d805fa29 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.5</title> + <title>Duniter 1.5.6</title> <style> html { font-family: "Courier New", Courier, monospace; diff --git a/package.json b/package.json index 6e504c088d0c3cf7eba1a447a7f07b61d2bcd76c..96a085f109e458de7f352acd30e0ee7a429767c4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "duniter", - "version": "1.5.5", + "version": "1.5.6", "engines": { "node": ">=6.11.1", "npm": ">=3.10" @@ -12,7 +12,7 @@ "node-main": "./bin/duniter", "window": { "icon": "duniter.png", - "title": "v1.5.5", + "title": "v1.5.6", "width": 800, "height": 800, "min_width": 750, diff --git a/release/arch/debian/package/DEBIAN/control b/release/arch/debian/package/DEBIAN/control index 159aaf5462c947bef55b317f5aa741dfc5017753..8481999bfa2e07fdebb6dcfde17d75312cf5f3ee 100644 --- a/release/arch/debian/package/DEBIAN/control +++ b/release/arch/debian/package/DEBIAN/control @@ -1,5 +1,5 @@ Package: duniter -Version: 1.5.5 +Version: 1.5.6 Section: misc Priority: optional Architecture: all diff --git a/release/arch/windows/duniter.iss b/release/arch/windows/duniter.iss index 9161bf0c977b1f4d7784f4410b584ada7158d6dd..5e5c35d35f7feda6b6f9206460b9e0ba9edf6ce3 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.5" +#define MyAppVerStr "v1.5.6" [Setup] AppName={#MyAppName} diff --git a/test/integration/branches.js b/test/integration/branches.js index 6145ed68304f169343c6f80272ade03b4e40e430..9372747a4c548ef345b950b80483d4683cfcc564 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.5'); + res.should.have.property('duniter').property('version').equal('1.5.6'); res.should.have.property('duniter').property('forkWindowSize').equal(3); }); });