diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1863373..38f1161 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,6 +20,15 @@ instructions, because git commits are used to generate release notes:
+
+## v17.0.6 (2024-06-13)
+
+- [Feature] Introduces the IS_FILE_RENDERED Filter, which allows developers to specify files that should be copied directly without rendering. This update empowers developers to manage special file types, ensuring that they are transferred intact without undergoing template processing. (by @Abdul-Muqadim-Arbisoft)
+
+- [Improvement] Remove the obsolete `version` property from all Docker Compose files and remove the DOCKER_COMPOSE_VERSION config setting. This addresses the deprecation warning from docker-compose (version 1.27 and above) regarding `version` being obsolete. (by @jasonmokk)
+
+- [Bugfix] Fix permissions error on windows when running `tutor dev start` (by @Danyal-Faheem)
+
## v17.0.5 (2024-05-22)
diff --git a/changelog.d/20240508_111948_abdul.muqadim_is_file_rendered_filter.md b/changelog.d/20240508_111948_abdul.muqadim_is_file_rendered_filter.md
deleted file mode 100644
index 4ccec0c..0000000
--- a/changelog.d/20240508_111948_abdul.muqadim_is_file_rendered_filter.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Feature] Introduces the IS_FILE_RENDERED Filter, which allows developers to specify files that should be copied directly without rendering. This update empowers developers to manage special file types, ensuring that they are transferred intact without undergoing template processing. (by @Abdul-Muqadim-Arbisoft)
diff --git a/changelog.d/20240528_110103_jjasonmok1_remove_version_argument.md b/changelog.d/20240528_110103_jjasonmok1_remove_version_argument.md
deleted file mode 100644
index d9dbc2d..0000000
--- a/changelog.d/20240528_110103_jjasonmok1_remove_version_argument.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Improvement] Remove the obsolete `version` property from all Docker Compose files and remove the DOCKER_COMPOSE_VERSION config setting. This addresses the deprecation warning from docker-compose (version 1.27 and above) regarding `version` being obsolete. (by @jasonmokk)
\ No newline at end of file
diff --git a/changelog.d/20240604_221238_danyal.faheem_permissions_host_fix_on_windows.md b/changelog.d/20240604_221238_danyal.faheem_permissions_host_fix_on_windows.md
deleted file mode 100644
index d738141..0000000
--- a/changelog.d/20240604_221238_danyal.faheem_permissions_host_fix_on_windows.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Bugfix] Fix permissions error on windows when running `tutor dev start` (by @Danyal-Faheem)
diff --git a/tutor/__about__.py b/tutor/__about__.py
index ffc877b..4924a76 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__ = "17.0.5"
+__version__ = "17.0.6"
# 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