diff --git a/CHANGELOG.md b/CHANGELOG.md
index ddcdb47265..4dcf442486 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,12 @@
Open XDMoD Change Log
=====================
+## 2019-05-02 v8.1.1
+
+- Bug Fixes
+ - General
+ - Allow upgrade to finish if cloud realm schema has not been created ([\#882](https://github.com/ubccr/xdmod/pull/882))
+
## 2019-04-23 v8.1.0
- Documentation
diff --git a/bin/xdmod-upgrade b/bin/xdmod-upgrade
index 1a7f51e1dd..f7fbd889a2 100755
--- a/bin/xdmod-upgrade
+++ b/bin/xdmod-upgrade
@@ -27,6 +27,7 @@ ini_set('memory_limit', -1);
*/
$supportedUpgrades = array(
'8.0.0' => '8.1.0',
+ '8.1.0' => '8.1.1',
);
/**
diff --git a/configuration/portal_settings.ini b/configuration/portal_settings.ini
index 719cdb08fa..f6990fdbc7 100644
--- a/configuration/portal_settings.ini
+++ b/configuration/portal_settings.ini
@@ -6,7 +6,7 @@ contact_page_recipient = ""
tech_support_recipient = ""
; The version number is updated during the upgrade process.
-version = "8.1.0"
+version = "8.1.1"
debug_mode = "off"
debug_recipient = ""
diff --git a/html/about/release_notes/xdmod.html b/html/about/release_notes/xdmod.html
index 9028af16d9..6669cd710d 100644
--- a/html/about/release_notes/xdmod.html
+++ b/html/about/release_notes/xdmod.html
@@ -2,6 +2,15 @@
Open XDMoD Release Notes
Below is a list of Open XDMoD releases with major features and bug fixes listed.
+ Version 8.1.1 (2019-05-02)
+Bug Fixes
+
+ - General
+
+ - Allow upgrade to finish if cloud realm schema has not been created #905
+
+
+
Version 8.1.0 (2019-04-23)
Documentation
diff --git a/open_xdmod/modules/xdmod/build.json b/open_xdmod/modules/xdmod/build.json
index 6f74697dec..3a1164a1a9 100644
--- a/open_xdmod/modules/xdmod/build.json
+++ b/open_xdmod/modules/xdmod/build.json
@@ -1,6 +1,6 @@
{
"name": "xdmod",
- "version": "8.1.0",
+ "version": "8.1.1",
"release": "1.0",
"files": {
"include_paths": [
diff --git a/open_xdmod/modules/xdmod/xdmod.spec.in b/open_xdmod/modules/xdmod/xdmod.spec.in
index 74c8dc73a3..e01ed54eaa 100644
--- a/open_xdmod/modules/xdmod/xdmod.spec.in
+++ b/open_xdmod/modules/xdmod/xdmod.spec.in
@@ -31,7 +31,7 @@ detailed interactive charts, graphs, and tables.
%setup -q -n %{name}-%{version}__PRERELEASE__
%pre
-if [ "%{version}" = "8.1.0" ]; then
+if [ "%{version}" = "8.1.0" ] || [ "%{version}" = "8.1.1" ]; then
# This script is only needed for the 8.1.0 install/upgrade. After this time
# the node_modules directory is managed by RPM.
if [ -e "%{_datadir}/%{name}/etl/js/node_modules" ];
@@ -96,6 +96,8 @@ rm -rf $RPM_BUILD_ROOT
%config(noreplace) %{_datadir}/%{name}/html/robots.txt
%changelog
+* Thu May 02 2019 XDMoD 8.1.1-1.0
+ - Update `%pre` with steps for `node_modules` on 8.1.1 release
* Tue Apr 23 2019 XDMoD 8.1.0-1.0
- Update `%pre` with steps for `node_modules` on 8.1.0 release
* Tue Oct 30 2018 XDMoD 8.0.0-1.0