diff --git a/README.md b/README.md
index 8599c37fbcc27255168a99c2954d74ac77d3666c..92823964c15808fe255d3fe21f4a1a18d90ca80d 100644
--- a/README.md
+++ b/README.md
@@ -156,6 +156,32 @@ emulator -avd Pixel_3a_API_30_x86 -wipe-data
 Replace your emulator name with the example above
 
 ## Android publishing
+Before building, signing and publishing, make sure you bump the version in `package.json`
+
+```json
+{
+  "name": "vipsobservationapp",
+  "version": "0.9.7",
+  "private": true,
+  "description": "The Field Pest Observation App for VIPS users",
+  "author": "Tor-Einar Skog <tor-einar.skog@nibio.no>",
+  "scripts": {
+    "build": "node build/build.js",
+    "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
+    "i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'",
+    "start": "npm run dev"
+  },
+```
+...and in config.xml
+
+```xml
+<?xml version='1.0' encoding='utf-8'?>
+<widget id="no.nibio.vips.observation" version="0.9.7"
+	xmlns="http://www.w3.org/ns/widgets"
+	xmlns:android="http://schemas.android.com/apk/res/android"
+	xmlns:cdv="http://cordova.apache.org/ns/1.0">
+```
+
 ### Notes and docs
 
 [Developer account for Google Play](https://play.google.com/console/)
diff --git a/config.xml b/config.xml
index c44ee1fa0e40904358b3588e1daf26d0e1d19fee..9d8bf1c4c1c5dc7ac7523aca2a32029d208692ea 100644
--- a/config.xml
+++ b/config.xml
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding='utf-8'?>
-<widget id="no.nibio.vips.observation" version="0.9.6"
+<widget id="no.nibio.vips.observation" version="0.9.7"
 	xmlns="http://www.w3.org/ns/widgets"
 	xmlns:android="http://schemas.android.com/apk/res/android"
 	xmlns:cdv="http://cordova.apache.org/ns/1.0">
diff --git a/package.json b/package.json
index 50f4c9abab756be7d39367c216b97d34b807092d..083101682e0699223d9cef79953d43123f9a9abd 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "vipsobservationapp",
-  "version": "0.9.6",
+  "version": "0.9.7",
   "private": true,
   "description": "The Field Pest Observation App for VIPS users",
   "author": "Tor-Einar Skog <tor-einar.skog@nibio.no>",