diff --git a/doc/changelog/changelog_v1.4.13.md b/doc/changelog/changelog_v1.4.13.md
index 5f83e50adaa4ed03a29336a567a96223ab4b1ff6..be01b7fcd19587bf177cf201432e716054db3c88 100644
--- a/doc/changelog/changelog_v1.4.13.md
+++ b/doc/changelog/changelog_v1.4.13.md
@@ -7,8 +7,3 @@
   and `www/lib/ionic/angular`
 - [fix] Cesium+: fix charts X axis labels
 
-## Android
-
-
-## Desktop
-
diff --git a/doc/changelog/changelog_v1.4.14.md b/doc/changelog/changelog_v1.4.14.md
index 5078d7d4069875a30b7775f6b788ed7a99abf4b4..b2d5073398181033600311b308a88dd827ce234f 100644
--- a/doc/changelog/changelog_v1.4.14.md
+++ b/doc/changelog/changelog_v1.4.14.md
@@ -5,7 +5,7 @@
 - [enh] Transfer form: display the amount's unit as a dropdown  
 - [fix] I18n: better explanation for where Cesium+ profile are stored
 
-Build artifact
+## Build tools
 
 - [enh] Migrate dependency management to Yarn, instead of Bower (deprecated) 
 - [fix] Avoid error during `ionic state restore` : move `platforms/desktop` and `platforms/web` to `dist` 
diff --git a/doc/changelog/changelog_v1.5.3.md b/doc/changelog/changelog_v1.5.3.md
new file mode 100644
index 0000000000000000000000000000000000000000..daebda39e49bddf03a256669bacd05faa00c1bc9
--- /dev/null
+++ b/doc/changelog/changelog_v1.5.3.md
@@ -0,0 +1,45 @@
+# Version v1.5.3
+
+## All platforms
+
+- [enh] My operations: show many pubkeys, when TX has more than one issuers (or recipients)
+- [enh] My operations: Optimize load
+
+- [fix] Home: fix logout button icons, on small device
+- [fix] Menu: badge alignment on small device
+- [fix] Wot identity: better fab compose id (UID is not safe)
+- [fix] Wallet (secondary): fix show certification link (for large screen)
+- [fix] Wallet (secondary): fix show certification link (for large screen)
+- [fix] Transfer: always hide the digitKeyboard when not a device - fix #866
+- [fix] Network: add button to show Cesium+ network (if expert mode and Cesium+ plugin are enable)
+
+### Cesium+ plugin
+
+- [enh] Cesium+: add a view to monitor Cesium+ pod network
+- [enh] Cesium+ settings: Use the specific Cs+ network view, to select a Pod
+- [enh] Cesium+ pod stats: Allow to see stats pages (data and synchro) from any Cesium+ pod
+
+- [fix] Cesium+ settings: do not store remotely es.node.useSsl property
+- [fix] Cesium+ page: Fix comment "send button" alignment
+- [fix] Cesium+ pod stats: use the new index (document/stats) instead of (docstat/record)
+- [fix] Settings: do not store `max upload size` in remote settings
+- [fix] Network: Fix an error in console, when leaving the network view
+
+### Android build
+
+- [fix] Android: revert to minSdkVersion=19
+- [fix] Android: Fix new cordova restore plugins
+- [fix] Android build: use ~/Android/Sdk if exists
+- [fix] Android build: add gradle installation when not found
+- [fix] Android build: use existing gradle if found in the path
+
+## Build tools
+
+- [enh] Add a sha256 checksum file, on each release
+
+- [fix] Remove Ionic v1 config file
+- [fix] Fix gulp compile script (watch)
+- [fix] update config.xml cordova plugins version
+- [fix] Build: compile using the last ionic cli, and nodeJS v10
+- [fix] Build: Remove unused gulp sourcemaps
+
diff --git a/platforms/android b/platforms/android
index 197e3a8e9162548461251a20ba3b99e1fc89c314..9bc41782abff7603acd0baf0d327d4c854341f9c 160000
--- a/platforms/android
+++ b/platforms/android
@@ -1 +1 @@
-Subproject commit 197e3a8e9162548461251a20ba3b99e1fc89c314
+Subproject commit 9bc41782abff7603acd0baf0d327d4c854341f9c
diff --git a/scripts/release.sh b/scripts/release.sh
index 355397c2f708a5d3579c549a75eb7240d8352123..b43f064d630691239d39f38a8e3abc317a21a751 100755
--- a/scripts/release.sh
+++ b/scripts/release.sh
@@ -134,20 +134,24 @@ if [[ $? -ne 0 ]]; then
 fi
 git commit -m "v$2"
 git tag -f -a "v$2" -m "${description}"
+# Push the tag
 git push origin "v$2"
-git push
+# Push the master branch
+git push origin HEAD:master
 if [[ $? -ne 0 ]]; then
   exit 1
 fi
 
 # Commit android project
-cd ${PROJECT_DIR}/platforms/android
+cd ${PROJECT_DIR}/platforms/android || exit 1
 git reset HEAD
 git add -A
 git commit -m "v$2"
 git tag -f -a "v$2" -m "${description}"
+# Push the tag
 git push origin "v$2"
-git push
+# Push the master branch
+git push origin
 if [[ $? -ne 0 ]]; then
   exit 1
 fi