diff --git a/appveyor.yml b/appveyor.yml
index 831535de0b2d5a0dd9efab14be236d7050f678f6..c3debaf564351b6f51774f274308c7adf54ab1ff 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -70,7 +70,7 @@ artifacts:
     name: Duniter
 
 deploy:
-  release: v0.90.3
+  release: v0.90.4
   provider: GitHub
   auth_token:
     secure: Vp/M0r0i1yhGR2nhrPWEbTiDIF6r0cmwbNDFZUzdFe5clWxPXtuC0lgIpOQI78zt
diff --git a/ci/travis/before_deploy.sh b/ci/travis/before_deploy.sh
index cea686b235183f4905976c5852dcd632c1ffa492..145ce16af4d6703ede1f72271d7d9d24b151dc20 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.90.3
+  DUNITER_VER=0.90.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 d98a5409f266f3b7424b1ce2027f949f7822da5c..c0505e09e470ed5db6b6ac0734725ec3ee4c0fc1 100644
--- a/ci/travis/debian/DEBIAN/control
+++ b/ci/travis/debian/DEBIAN/control
@@ -1,5 +1,5 @@
 Package: duniter
-Version: 0.90.3
+Version: 0.90.4
 Section: misc
 Priority: optional
 Architecture: all
diff --git a/gui/index.html b/gui/index.html
index ea6dc3957225bc49360af5b9afc05f631b51f924..bf93c0dc2b6fff103f6cd5dbc57494e0bbe0d987 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.90.3</title>
+  <title>Duniter 0.90.4</title>
   <style>
     html {
       font-family: "Courier New", Courier, monospace;
diff --git a/gui/package.json b/gui/package.json
index f3b80cd336b56b3e8a7eea3828ef71ccfd61b9c4..e5c41307da8dce565c466fa73bd6e6741d1ab480 100644
--- a/gui/package.json
+++ b/gui/package.json
@@ -1,10 +1,10 @@
 {
-  "name": "v0.90.3",
+  "name": "v0.90.4",
   "main": "index.html",
   "node-main": "../sources/bin/duniter",
   "window": {
     "icon": "duniter.png",
-    "title": "v0.90.3",
+    "title": "v0.90.4",
     "width": 800,
     "height": 800,
     "min_width": 750,
diff --git a/install.sh b/install.sh
index 3a7eb1219fddb397fe0b9f161d449f1f4439ec44..0703f103c7e8fce9bdc54e8524536e9415a9cf77 100755
--- a/install.sh
+++ b/install.sh
@@ -11,7 +11,7 @@ if [ -z "$DUNITER_DIR" ]; then
 fi
 
 latest_version() {
-  echo "v0.90.3"
+  echo "v0.90.4"
 }
 
 repo_url() {
diff --git a/package.json b/package.json
index e5b5498050ba02472ecb71d5133823721f6e3b60..648d1bb28573fa17309330489903f50dc443711a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "duniter",
-  "version": "0.90.3",
+  "version": "0.90.4",
   "engines": {
     "node": ">=4.2.0",
     "npm": ">=2.11"
diff --git a/test/integration/branches.js b/test/integration/branches.js
index a8954d21eaeb25c541e41a66d5746263830f4137..a2631b068b8d2237ee3a01f76c04f7b7b084e033 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.90.3');
+        res.should.have.property('duniter').property('version').equal('0.90.4');
         res.should.have.property('duniter').property('forkWindowSize').equal(3);
       });
     });