From a302acc2286afe257608588fd686dd1130d76af9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Fri, 28 Apr 2023 08:20:44 +0200 Subject: [PATCH] v15.3.5 --- CHANGELOG.md | 8 ++++++++ changelog.d/20230326_102311_regis_moar_tasks.md | 4 ---- tutor/__about__.py | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) delete mode 100644 changelog.d/20230326_102311_regis_moar_tasks.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 722fc0b..2fc89ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,14 @@ instructions, because git commits are used to generate release notes: + +## v15.3.5 (2023-04-28) + +- [Feature] Make it possible to import the demo course from a different git repository or version. (by @regisb) +- [Feature] Add a convenient `do print-edx-platform-setting` command to print the value of an edx-platform setting. (by @regisb) +- [Improvement] Improve edx-platform logging by silencing a couple deprecation warnings. (by @regisb) +- [Feature] Add a convenient `do sqlshell` command to enter a SQL shell as root. (by @regisb) + ## v15.3.4 (2023-04-13) diff --git a/changelog.d/20230326_102311_regis_moar_tasks.md b/changelog.d/20230326_102311_regis_moar_tasks.md deleted file mode 100644 index 9d85078..0000000 --- a/changelog.d/20230326_102311_regis_moar_tasks.md +++ /dev/null @@ -1,4 +0,0 @@ -- [Feature] Make it possible to import the demo course from a different git repository or version. (by @regisb) -- [Feature] Add a convenient `do print-edx-platform-setting` command to print the value of an edx-platform setting. (by @regisb) -- [Improvement] Improve edx-platform logging by silencing a couple deprecation warnings. (by @regisb) -- [Feature] Add a convenient `do sqlshell` command to enter a SQL shell as root. (by @regisb) diff --git a/tutor/__about__.py b/tutor/__about__.py index 41ebf54..1723baa 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.4" +__version__ = "15.3.5" # 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