diff --git a/VERSION b/VERSION
index 70d17ca..3336003 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.3.7-SNAPSHOT
+1.3.7
diff --git a/package.json b/package.json
index c058ec3..5083fc6 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
   "name": "loginized",
   "description": "Loginized Gnome GDM Login Theme Manager",
   "homepage": "https://github.com/juhaku/loginized",
-  "version": "1.3.7-SNAPSHOT",
+  "version": "1.3.7",
   "private": true,
   "license": "GPL-3.0",
   "author": {
diff --git a/src/constants.ts b/src/constants.ts
index 1cc7828..3f90f35 100644
--- a/src/constants.ts
+++ b/src/constants.ts
@@ -3,7 +3,7 @@ declare var __static: string;
 export default class Constants {
     public static readonly BASE_PATH = process.env.NODE_ENV === 'development'
         ? __static.replace('/public', '') : __static.replace('/resources/app', '').replace('.asar', '');
-    public static readonly VERSION = '1.3.7-SNAPSHOT';
+    public static readonly VERSION = '1.3.7';
     public static readonly LATEST_RELEASE_URL = 'https://api.github.com/repos/juhaku/loginized/releases/latest';
     public static readonly IS_DEBUG = process.env.NODE_ENV === 'development';
 }