diff --git a/CHANGELOG.md b/CHANGELOG.md
index 545153f..310e69b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,6 +20,19 @@ instructions, because git commits are used to generate release notes:
+
+## v15.3.3 (2023-03-22)
+
+- [Improvement] Make it possible to extend or override the configuration of the uWSGI server. (by @MoisesGSalas)
+- [Improvement] Running `tutor dev launch --mount=edx-platform` now performs all necessary setup for a local edx-platform development. This includes running setup.py, installing node modules, and building assets; previously, those steps had to be run explicitly after bind-mounting a local copy of edx-platform (by @kdmccormick).
+- [Bugfix] Running jobs in development mode with `tutor dev do ...` will now correctly use the development image. Previously, it used the production image, just like `tutor local do ...`. (by @kdmccormick)
+- [Improvement] Faster build with `npm clean-install` instead of `npm install` in the openedx Docker image. This may change the version of npm packages installed next to edx-platform. (by @regisb)
+- [Feature] Introduce the `DOCKER_BUILD_COMMAND` filter which makes it possible to customize the `docker build` command. (by @regisb)
+- [Improvement] During openedx image build, copy `dockerize` utility from Docker registry for better efficiency. (by @regisb)
+- [Improvement] Better highlight enabled plugins in `tutor plugins list`. (by @regisb)
+
+- [Bugfix] Make sure that v0 plugin patches are applied in the same order as plugins are listed. (by @regisb)
+
## v15.3.2 (2023-03-13)
diff --git a/changelog.d/20230310_021412_moises.gonzalez_configurable_uwsgi.md b/changelog.d/20230310_021412_moises.gonzalez_configurable_uwsgi.md
deleted file mode 100644
index 904c765..0000000
--- a/changelog.d/20230310_021412_moises.gonzalez_configurable_uwsgi.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-- [Improvement] Make it possible to extend or override the configuration of the uWSGI server. (by @MoisesGSalas)
diff --git a/changelog.d/20230313_110919_kdmc_mounted_init.md b/changelog.d/20230313_110919_kdmc_mounted_init.md
deleted file mode 100644
index 0cae043..0000000
--- a/changelog.d/20230313_110919_kdmc_mounted_init.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Improvement] Running ``tutor dev launch --mount=edx-platform`` now performs all necessary setup for a local edx-platform development. This includes running setup.py, installing node modules, and building assets; previously, those steps had to be run explicitly after bind-mounting a local copy of edx-platform (by @kdmccormick).
diff --git a/changelog.d/20230313_163654_kdmc_dev_image_for_dev_do.md b/changelog.d/20230313_163654_kdmc_dev_image_for_dev_do.md
deleted file mode 100644
index c4325e3..0000000
--- a/changelog.d/20230313_163654_kdmc_dev_image_for_dev_do.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Bugfix] Running jobs in development mode with ``tutor dev do ...`` will now correctly use the development image. Previously, it used the production image, just like ``tutor local do ...``. (by @kdmccormick)
diff --git a/changelog.d/20230313_163942_regis_docker_optimize.md b/changelog.d/20230313_163942_regis_docker_optimize.md
deleted file mode 100644
index 491e07e..0000000
--- a/changelog.d/20230313_163942_regis_docker_optimize.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Improvement] Faster build with `npm clean-install` instead of `npm install` in the openedx Docker image. This may change the version of npm packages installed next to edx-platform. (by @regisb)
diff --git a/changelog.d/20230313_172348_regis_docker_optimize.md b/changelog.d/20230313_172348_regis_docker_optimize.md
deleted file mode 100644
index 811724c..0000000
--- a/changelog.d/20230313_172348_regis_docker_optimize.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Feature] Introduce the `DOCKER_BUILD_COMMAND` which makes it possible to customize the `docker build` command. (by @regisb)
diff --git a/changelog.d/20230313_180716_regis_docker_optimize.md b/changelog.d/20230313_180716_regis_docker_optimize.md
deleted file mode 100644
index 98bac1a..0000000
--- a/changelog.d/20230313_180716_regis_docker_optimize.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Improvement] During openedx image build, copy `dockerize` utility from Docker registry for better efficiency. (by @regisb)
diff --git a/changelog.d/20230316_094112_regis_better_highlight_enabled_plugins.md b/changelog.d/20230316_094112_regis_better_highlight_enabled_plugins.md
deleted file mode 100644
index 70e0402..0000000
--- a/changelog.d/20230316_094112_regis_better_highlight_enabled_plugins.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Improvement] Better highlight enabled plugins in `tutor plugins list`. (by @regisb)
diff --git a/changelog.d/20230316_113639_regis_fix_yaml_patch_ordering.md b/changelog.d/20230316_113639_regis_fix_yaml_patch_ordering.md
deleted file mode 100644
index f3459e3..0000000
--- a/changelog.d/20230316_113639_regis_fix_yaml_patch_ordering.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Bugfix] Make sure that v0 plugin patches are applied in the same order as plugins are listed. (by @regisb)
diff --git a/tutor/__about__.py b/tutor/__about__.py
index 1bbfda9..4c089b8 100644
--- a/tutor/__about__.py
+++ b/tutor/__about__.py
@@ -2,7 +2,7 @@ import os
# Increment this version number to trigger a new release. See
# docs/tutor.html#versioning for information on the versioning scheme.
-__version__ = "15.3.2"
+__version__ = "15.3.3"
# The version suffix will be appended to the actual version, separated by a
# dash. Use this suffix to differentiate between the actual released version and