diff --git a/CHANGELOG.md b/CHANGELOG.md
index 184c77f6..3a2aa124 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,7 @@
 # Change Log
 All notable changes to this project will be documented in this file.
 
-## Unreleased
+## 0.18.1 - 2020-04-21
 ### Added
 - Support for Shopify Flow trigger usage monitoring
 - Ability to minimise webhook payloads through `config.webhook_fields`
diff --git a/UPGRADING.md b/UPGRADING.md
index 854e054e..382dc770 100644
--- a/UPGRADING.md
+++ b/UPGRADING.md
@@ -3,7 +3,7 @@ This file contains more detailed instructions on what's required when updating
 an application between one release version of the gem to the next. It's intended
 as more in-depth accompaniment to the notes in `CHANGELOG.md` for each version.
 
-## Upgrading from 0.18.0 to Unreleased
+## Upgrading from 0.18.0 to 0.18.1
 Ensure new Shopify Flow Trigger Usage database migrations are brought across and run:
 
 ```
diff --git a/VERSION b/VERSION
index 66333910..249afd51 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.18.0
+0.18.1
diff --git a/initialise.sh b/initialise.sh
index fdafa985..4517e911 100755
--- a/initialise.sh
+++ b/initialise.sh
@@ -5,7 +5,7 @@ APP_NAME="$1"
 RAILS_VERSION="${RAILS_VERSION:-6.0.2}"
 RUBY_VERSION="${RUBY_VERSION:-2.6.5}"
 NODE_VERSION="${NODE_VERSION:-13.7.0}"
-DISCO_APP_VERSION="${DISCO_APP_VERSION:-0.18.0}"
+DISCO_APP_VERSION="${DISCO_APP_VERSION:-0.18.1}"
 
 if [ -z $APP_NAME ]; then
   echo "Usage: ./initialise.sh app_name (rails_version) (ruby_version) (disco_app_version)"
diff --git a/lib/disco_app/version.rb b/lib/disco_app/version.rb
index bc3c7b21..39bd46e0 100644
--- a/lib/disco_app/version.rb
+++ b/lib/disco_app/version.rb
@@ -1,5 +1,5 @@
 module DiscoApp
 
-  VERSION = '0.18.0'.freeze
+  VERSION = '0.18.1'.freeze
 
 end