From ad6045db757e2102a9e4b21ef07734f15e1d3c81 Mon Sep 17 00:00:00 2001 From: Syed Muhammad Dawoud Sheraz Ali Date: Thu, 13 Jun 2024 12:42:32 +0500 Subject: [PATCH] v17.0.6 --- CHANGELOG.md | 9 +++++++++ ...40508_111948_abdul.muqadim_is_file_rendered_filter.md | 1 - ...20240528_110103_jjasonmok1_remove_version_argument.md | 1 - ...1238_danyal.faheem_permissions_host_fix_on_windows.md | 1 - tutor/__about__.py | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) delete mode 100644 changelog.d/20240508_111948_abdul.muqadim_is_file_rendered_filter.md delete mode 100644 changelog.d/20240528_110103_jjasonmok1_remove_version_argument.md delete mode 100644 changelog.d/20240604_221238_danyal.faheem_permissions_host_fix_on_windows.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 1863373499..38f1161d57 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 4ccec0cb85..0000000000 --- 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 d9dbc2d479..0000000000 --- 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 d738141a0d..0000000000 --- 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 ffc877b59c..4924a76e74 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.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