diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1fb3cb5150..f0146dfdec 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,6 +20,14 @@ instructions, because git commits are used to generate release notes:
+
+## v17.0.1 (2024-01-25)
+
+- [Bugfix] Error "'Crypto.PublicKey.RSA.RsaKey object' has no attribute 'dq'" during `tutor config save` was caused by outdated minimum version of the pycryptodome package. To resolve this issue, run `pip install --upgrade pycryptodome`. (by @regisb)
+- [Feature] add `CONFIG_INTERACTIVE` action that allows tutor plugins to interact with the configuration at the time of the interactive questionnaire that happens during tutor local launch. (by @Alec4r).
+- [Improvement] Add `.webp` and. `.otf` extensions to list of binary extensions to ignore when rendering templates.
+- [Security] Fix JWT scopes in XBlock callbacks. (by @regisb)
+
## v17.0.0 (2023-12-09)
diff --git a/changelog.d/20231214_110904_regis_rsa_error.md b/changelog.d/20231214_110904_regis_rsa_error.md
deleted file mode 100644
index 37ea108dfb..0000000000
--- a/changelog.d/20231214_110904_regis_rsa_error.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Bugfix] Error "'Crypto.PublicKey.RSA.RsaKey object' has no attribute 'dq'" during `tutor config save` was caused by outdated minimum version of the pycryptodome package. To resolve this issue, run `pip install --upgrade pycryptodome`. (by @regisb)
diff --git a/changelog.d/20231214_141533_alecar.main_survey_report_plugin.md b/changelog.d/20231214_141533_alecar.main_survey_report_plugin.md
deleted file mode 100644
index 4b7472ff56..0000000000
--- a/changelog.d/20231214_141533_alecar.main_survey_report_plugin.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Feature] add `CONFIG_INTERACTIVE` action that allows tutor plugins to interact with the configuration at the time of the interactive questionnaire that happens during tutor local launch. (by @Alec4r).
diff --git a/changelog.d/20240118_155012_r.khetani.md b/changelog.d/20240118_155012_r.khetani.md
deleted file mode 100644
index fdd4fa93e7..0000000000
--- a/changelog.d/20240118_155012_r.khetani.md
+++ /dev/null
@@ -1 +0,0 @@
-[Improvement] Add `.webp` and. `.otf` extensions to list of binary extensions to ignore when rendering templates.
\ No newline at end of file
diff --git a/changelog.d/20240122_093036_regis_jwt_security.md b/changelog.d/20240122_093036_regis_jwt_security.md
deleted file mode 100644
index 88ed7777bb..0000000000
--- a/changelog.d/20240122_093036_regis_jwt_security.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Security] Fix JWT scopes in XBlock callbacks. (by @regisb)
diff --git a/tutor/__about__.py b/tutor/__about__.py
index b35db59044..de71b797e4 100644
--- a/tutor/__about__.py
+++ b/tutor/__about__.py
@@ -2,7 +2,7 @@
# Increment this version number to trigger a new release. See
# docs/tutor.html#versioning for information on the versioning scheme.
-__version__ = "17.0.0"
+__version__ = "17.0.1"
# 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