diff --git a/CHANGELOG.md b/CHANGELOG.md
index d098c0631e4d80b4c31547590ba2296248339562..7140e90f29a4b9ec5802ece4b9e59c2053f39eab 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,15 @@
+# v0.15.3 (2020-07-28)
+
+This release contains the following bugfixes:
+
+* Fix handling of relative view paths (#17721)
+* Fixes for binary relocation (#17418, #17455)
+* Fix redundant printing of error messages in build environment (#17709)
+
+It also adds a support script for Spack tutorials:
+
+* Add a tutorial setup script to share/spack (#17705, #17722)
+
 # v0.15.2 (2020-07-23)
 
 This minor release includes two new features:
diff --git a/lib/spack/spack/__init__.py b/lib/spack/spack/__init__.py
index 2b87833f7e7c7ecac1f613c05d0ce39143ae92da..862c8baa606dab79686aeb3869eb73dc061301ca 100644
--- a/lib/spack/spack/__init__.py
+++ b/lib/spack/spack/__init__.py
@@ -5,7 +5,7 @@
 
 
 #: major, minor, patch version for Spack, in a tuple
-spack_version_info = (0, 15, 2)
+spack_version_info = (0, 15, 3)
 
 #: String containing Spack version joined with .'s
 spack_version = '.'.join(str(v) for v in spack_version_info)
diff --git a/lib/spack/spack/container/images.json b/lib/spack/spack/container/images.json
index 7a7e98be1f7b346b82d67324c49719dfc3b586d5..24271e072174a5ade107265cbef0f9baf17d0966 100644
--- a/lib/spack/spack/container/images.json
+++ b/lib/spack/spack/container/images.json
@@ -14,7 +14,8 @@
       "0.15": "0.15",
       "0.15.0": "0.15.0",
       "0.15.1": "0.15.1",
-      "0.15.2": "0.15.2"
+      "0.15.2": "0.15.2",
+      "0.15.3": "0.15.3"
     }
   },
   "ubuntu:16.04": {
@@ -32,7 +33,8 @@
       "0.15": "0.15",
       "0.15.0": "0.15.0",
       "0.15.1": "0.15.1",
-      "0.15.2": "0.15.2"
+      "0.15.2": "0.15.2",
+      "0.15.3": "0.15.3"
     }
   },
   "centos:7": {
@@ -50,7 +52,8 @@
       "0.15": "0.15",
       "0.15.0": "0.15.0",
       "0.15.1": "0.15.1",
-      "0.15.2": "0.15.2"
+      "0.15.2": "0.15.2",
+      "0.15.3": "0.15.3"
     }
   },
   "centos:6": {
@@ -68,7 +71,8 @@
       "0.15": "0.15",
       "0.15.0": "0.15.0",
       "0.15.1": "0.15.1",
-      "0.15.2": "0.15.2"
+      "0.15.2": "0.15.2",
+      "0.15.3": "0.15.3"
     }
   }
 }
diff --git a/lib/spack/spack/schema/container.py b/lib/spack/spack/schema/container.py
index 8b7f8dac3b47d5b07386510ef3d88ead0688b09f..c6e54732e66a4a5c5b0c004ba5f92bec83b1e4ea 100644
--- a/lib/spack/spack/schema/container.py
+++ b/lib/spack/spack/schema/container.py
@@ -33,6 +33,7 @@
                         'develop',
                         '0.14', '0.14.0', '0.14.1', '0.14.2',
                         '0.15', '0.15.0', '0.15.1', '0.15.2',
+                        '0.15.3',
                     ]
                 }
             },