diff --git a/CHANGELOG.md b/CHANGELOG.md
index a7622098..45b469b7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## Release 1.1.4-dev (in progress)
+
+* ENHANCEMENT: Provide more robust upgrade process for PWAs
+* FIX: Disable HTTP cache when pre-caching upgraded app files
+* FIX: Switching to jQuery mode in the PWA app no longer prevents the app working offline
+* FIX: Display of masonry-style landing pages in SW mode
+* FIX: Inconsistent use of Settings Store during app initialization
+
## Release 1.1.3
* UPDATE: Included ZIM updated to `wikipedia_en_100_maxi_2020-12.zim`
diff --git a/pwabuilder-sw.js b/pwabuilder-sw.js
index fbcc9d34..c78da6cb 100644
--- a/pwabuilder-sw.js
+++ b/pwabuilder-sw.js
@@ -4,7 +4,7 @@
// App version number - ENSURE IT MATCHES VALUE IN init.js
// DEV: Changing this will cause the browser to recognize that the Service Worker has changed, and it will download and
// install a new copy
-const appVersion = '1.1.4-dev';
+const appVersion = '1.1.4-RP1';
// Kiwix ZIM Archive Download Server in regex form
// DEV: The server URL is defined in init.js, but is not available to us in SW
diff --git a/www/index.html b/www/index.html
index 63482c75..00107569 100644
--- a/www/index.html
+++ b/www/index.html
@@ -112,11 +112,11 @@
Changes in version 1.0
- - Included ZIM updated to wikipedia_en_100_maxi_2020-12.zim (smaller size)
- - Upgrade Settings Store
- - Support new location of mobile and desktop styles in Wikimedia archives
- - Enable use of Native File System in NWJS apps
- - Fix styling of index-based landing pages
+ - Provide a more robust upgrade process for PWAs
+ - Disable HTTP cache when pre-caching upgraded app files
+ - Switching to jQuery mode in the PWA app no longer prevents app working offline
+ - Fix display of masonry-style landing pages in SW mode
+ - Fix inconsistent use of Settings Store during app initialization
Full changelog...
diff --git a/www/js/init.js b/www/js/init.js
index 8bf86a7e..97203ff4 100644
--- a/www/js/init.js
+++ b/www/js/init.js
@@ -49,7 +49,7 @@ var params = {};
*/
var appstate = {};
/******** UPDATE VERSION IN pwabuilder-sw.js TO MATCH VERSION *******/
-params['version'] = "1.1.4-dev"; //DEV: Manually update this version when there is a new release: it is compared to the Settings Store "version" in order to show first-time info, and the cookie is updated in app.js
+params['version'] = "1.1.4-RP1"; //DEV: Manually update this version when there is a new release: it is compared to the Settings Store "version" in order to show first-time info, and the cookie is updated in app.js
/******* UPDATE THIS ^^^^^^ IN serveice worker!! ********************/
params['packagedFile'] = "wikipedia_en_100_maxi.zim"; //For packaged Kiwix JS (e.g. with Wikivoyage file), set this to the filename (for split files, give the first chunk *.zimaa) and place file(s) in default storage
params['archivePath'] = "archives"; //The directory containing the packaged archive(s) (relative to app's root directory)