diff --git a/.travis.yml b/.travis.yml index 57523a48088205df24163479b79146c353d2a11f..a7fc09c9488fa6be186a170f1079037dd2a7759e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,7 +29,7 @@ before_deploy: - ci/travis/before_deploy.sh deploy: - provider: releases -# prerelease: true + prerelease: true skip_cleanup: true api-key: secure: h+GgYhh8/I/l5EWdI1+bDQYtN57jvDf0xhiwcxlfm/AvaJWOZa+q81HsXdHqtwgmsCoRklKtOqTM/nqgSOcWPXsAditRjEXOui2FjZiJCosDjDPMnN6HKzw6XVLtSOx7CeCX/xFmoNTIdsAuC+HUfDWCUFgrsMj9F0V9J3U1nDs= diff --git a/appveyor.yml b/appveyor.yml index 38e87ee0aea066997391e33e710d12fa37e5d879..2c93222903dc47977dd0b3f94d4988c998264d83 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -70,11 +70,11 @@ artifacts: name: Duniter deploy: - release: v0.91.3 + release: v0.91.4 provider: GitHub auth_token: secure: Vp/M0r0i1yhGR2nhrPWEbTiDIF6r0cmwbNDFZUzdFe5clWxPXtuC0lgIpOQI78zt artifact: /Duniter/ -# prerelease: true + prerelease: true on: appveyor_repo_tag: true diff --git a/ci/travis/before_deploy.sh b/ci/travis/before_deploy.sh index 1878583cc24328dd033641d3a92d83490252ac07..b62730bbc8ff4ebacb1e4f6ad915257e176194c1 100755 --- a/ci/travis/before_deploy.sh +++ b/ci/travis/before_deploy.sh @@ -7,7 +7,7 @@ if [[ ! -f before_deploy ]]; then # Prepare NVER=`node -v` - DUNITER_VER=0.91.3 + DUNITER_VER=0.91.4 DUNITER_DEB_VER=" $DUNITER_VER" ADDON_VERSION=48 NW_VERSION=0.17.6 diff --git a/ci/travis/debian/DEBIAN/control b/ci/travis/debian/DEBIAN/control index 3faab841989df1d36189307efb652020ffbd0284..3b61af10c68045963f84b3e237a6b4de1f79afbb 100644 --- a/ci/travis/debian/DEBIAN/control +++ b/ci/travis/debian/DEBIAN/control @@ -1,5 +1,5 @@ Package: duniter -Version: 0.91.3 +Version: 0.91.4 Section: misc Priority: optional Architecture: all diff --git a/gui/index.html b/gui/index.html index b9163af543bfdee33d023351412e818cd4712cfa..79534a9b2526f04da74be9d637753436a3540288 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 0.91.3</title> + <title>Duniter 0.91.4</title> <style> html { font-family: "Courier New", Courier, monospace; diff --git a/gui/package.json b/gui/package.json index 02755b41daab77b5dcad2904a1175c6bfb4214d4..54b4bc71f8ebc221d29a7875a1fc595bb5650705 100644 --- a/gui/package.json +++ b/gui/package.json @@ -1,10 +1,10 @@ { - "name": "v0.91.3", + "name": "v0.91.4", "main": "index.html", "node-main": "../sources/bin/duniter", "window": { "icon": "duniter.png", - "title": "v0.91.3", + "title": "v0.91.4", "width": 800, "height": 800, "min_width": 750, diff --git a/install.sh b/install.sh index 720453480a6f6d2f2cd0981c3c09ea577b882177..e36da0852882509e69a15be335f684bcb7d1101b 100755 --- a/install.sh +++ b/install.sh @@ -11,7 +11,7 @@ if [ -z "$DUNITER_DIR" ]; then fi latest_version() { - echo "v0.91.3" + echo "v0.91.4" } repo_url() { diff --git a/package.json b/package.json index dc72dd9a2b4832cfe4f37c1caf0f057b1ff887ef..5a9861c6aff71e90d804542bd877323c86591aec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "duniter", - "version": "0.91.3", + "version": "0.91.4", "engines": { "node": ">=4.2.0", "npm": ">=2.11" diff --git a/test/integration/branches.js b/test/integration/branches.js index 77f8cdb4cbe488b33ee884b66ae303fde2f63de6..7bd10d7a10e46c3dd00172c6ea7e9b355153e671 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('0.91.3'); + res.should.have.property('duniter').property('version').equal('0.91.4'); res.should.have.property('duniter').property('forkWindowSize').equal(3); }); });