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