diff --git a/appveyor.yml b/appveyor.yml index ec651bc2f1ec0277c571e80556241eebdb7108a1..38c766e3804ebcf1b4855b9a9d29314a55225510 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -70,7 +70,7 @@ artifacts: name: Duniter deploy: - release: v0.81.0 + release: v0.90.0 provider: GitHub auth_token: secure: Vp/M0r0i1yhGR2nhrPWEbTiDIF6r0cmwbNDFZUzdFe5clWxPXtuC0lgIpOQI78zt diff --git a/ci/travis/before_deploy.sh b/ci/travis/before_deploy.sh index c4c3ff88ef91cc4472d58554f28e0e080d5ec243..58c79b57aff4d720691cee5d962a1419befceeb9 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.81.0 + DUNITER_VER=0.90.0 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 da712ccd3bc99e96399d3d62fb7751a4f7c2fc8e..f4749164698984799f922e6d0406fadfbc018cf8 100644 --- a/ci/travis/debian/DEBIAN/control +++ b/ci/travis/debian/DEBIAN/control @@ -1,5 +1,5 @@ Package: duniter -Version: 0.81.0 +Version: 0.90.0 Section: misc Priority: optional Architecture: all diff --git a/gui/index.html b/gui/index.html index 215d7f646d0272475affa66184a5f61482e2b06b..5202d5dda749fd305682ff49dfacca1b0b210467 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.81.0</title> + <title>Duniter 0.90.0</title> <style> html { font-family: "Courier New", Courier, monospace; diff --git a/gui/package.json b/gui/package.json index e5e0f5770c554ffa12ca07105427cb76a218e643..59a350319a73717e86d551e49593a8553cb40f5f 100644 --- a/gui/package.json +++ b/gui/package.json @@ -1,10 +1,10 @@ { - "name": "v0.81.0", + "name": "v0.90.0", "main": "index.html", "node-main": "../sources/bin/duniter", "window": { "icon": "duniter.png", - "title": "v0.81.0", + "title": "v0.90.0", "width": 800, "height": 800, "min_width": 750, diff --git a/install.sh b/install.sh index 4ad4d825efaa7315b4a388dae80ef0cf677588f3..1f8c8722924320a434246b19431505c02e1b362d 100755 --- a/install.sh +++ b/install.sh @@ -11,7 +11,7 @@ if [ -z "$DUNITER_DIR" ]; then fi latest_version() { - echo "v0.81.0" + echo "v0.90.0" } repo_url() { diff --git a/package.json b/package.json index 2faeda2ef7969742b9d626513d1e9e47fba6b2af..264dec9e6baf17b7acb4f8230b50173f069c011a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "duniter", - "version": "0.81.0", + "version": "0.90.0", "engines": { "node": ">=4.2.0", "npm": ">=2.11" diff --git a/test/integration/branches.js b/test/integration/branches.js index 0db977f6a4dba4b8e3dbe96a45ddd51c42408ca4..a71747bd425ad8a23eccd5599faf87670ac779df 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.81.0'); + res.should.have.property('duniter').property('version').equal('0.90.0'); res.should.have.property('duniter').property('forkWindowSize').equal(3); }); });