diff --git a/gui/index.html b/gui/index.html index 8dceebfc85eb69c075387ce322ef6800fab72f7e..a7c8efbaaeaf2711b69b70319813670a092824ab 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.3.4</title> + <title>Duniter 1.3.5</title> <style> html { font-family: "Courier New", Courier, monospace; diff --git a/install.sh b/install.sh index e88cfcec9ae00b65819aa39b40c1e7cffe936942..62f0e5037bb8a2c15feaa2de7dffc81457d459aa 100755 --- a/install.sh +++ b/install.sh @@ -11,7 +11,7 @@ if [ -z "$DUNITER_DIR" ]; then fi latest_version() { - echo "v1.3.4" + echo "v1.3.5" } repo_url() { diff --git a/package.json b/package.json index 27d714a353200a17995742a770d37bcd6c7f7614..0014bb3de9a4b1fd2568998e6545f4fe2df260fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "duniter", - "version": "1.3.4", + "version": "1.3.5", "engines": { "node": ">=4.2.0", "npm": ">=2.11" @@ -12,7 +12,7 @@ "node-main": "./bin/duniter", "window": { "icon": "duniter.png", - "title": "v1.3.4", + "title": "v1.3.5", "width": 800, "height": 800, "min_width": 750, diff --git a/release/arch/debian/package/DEBIAN/control b/release/arch/debian/package/DEBIAN/control index 87a9c120e23ca4ff4600d836569c147396c1f531..d042f2f573d8760c09ea4ac9b4840cb8ce8f6b94 100644 --- a/release/arch/debian/package/DEBIAN/control +++ b/release/arch/debian/package/DEBIAN/control @@ -1,5 +1,5 @@ Package: duniter -Version: 1.3.4 +Version: 1.3.5 Section: misc Priority: optional Architecture: all diff --git a/release/arch/windows/duniter.iss b/release/arch/windows/duniter.iss index 807082b59d3a917b2be4d5ea7166ee7e3dfd4fd9..bc87ea82ae78a9c7762c3490e5a9706fe96900a9 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.3.4" +#define MyAppVerStr "v1.3.5" [Setup] AppName={#MyAppName} diff --git a/test/integration/branches.js b/test/integration/branches.js index ac1c049cb9b73f2db81f87376b0cef17241c4a46..e48ccebcd7f61d8e575f2ee146c8b35aadd77c53 100644 --- a/test/integration/branches.js +++ b/test/integration/branches.js @@ -43,7 +43,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.3.4'); + res.should.have.property('duniter').property('version').equal('1.3.5'); res.should.have.property('duniter').property('forkWindowSize').equal(3); }); });