From bb23afcc60b981128a9dc2c6ad511ac6a031d597 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Thu, 3 Aug 2023 11:19:17 +0200 Subject: [PATCH] v16.0.4 --- CHANGELOG.md | 7 +++++++ changelog.d/20230623_170336_regis_http3.md | 1 - changelog.d/20230731_155418_regis_fix_discussion_units.md | 1 - changelog.d/20230801_201804_codewithemad_remove_wizard.md | 1 - tutor/__about__.py | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) delete mode 100644 changelog.d/20230623_170336_regis_http3.md delete mode 100644 changelog.d/20230731_155418_regis_fix_discussion_units.md delete mode 100644 changelog.d/20230801_201804_codewithemad_remove_wizard.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c044d0..deda386 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,13 @@ instructions, because git commits are used to generate release notes: + +## v16.0.4 (2023-08-03) + +- [Feature] Add support for HTTP/3, which considerably improves performance for Open edX. (by @regisb and @ghassanmas) +- [Bugfix] Do not display discussion units when the forum is not enabled. (by @regisb) +- [Improvement] Remove references to the wizard edition. (by @CodeWithEmad) + ## v16.0.3 (2023-07-28) diff --git a/changelog.d/20230623_170336_regis_http3.md b/changelog.d/20230623_170336_regis_http3.md deleted file mode 100644 index 6f3aef4..0000000 --- a/changelog.d/20230623_170336_regis_http3.md +++ /dev/null @@ -1 +0,0 @@ -- [Feature] Add support for HTTP/3, which considerably improves performance for Open edX. (by @regisb and @ghassanmas) diff --git a/changelog.d/20230731_155418_regis_fix_discussion_units.md b/changelog.d/20230731_155418_regis_fix_discussion_units.md deleted file mode 100644 index 55ad284..0000000 --- a/changelog.d/20230731_155418_regis_fix_discussion_units.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Do not display discussion units when the forum is not enabled. (by @regisb) diff --git a/changelog.d/20230801_201804_codewithemad_remove_wizard.md b/changelog.d/20230801_201804_codewithemad_remove_wizard.md deleted file mode 100644 index d007de9..0000000 --- a/changelog.d/20230801_201804_codewithemad_remove_wizard.md +++ /dev/null @@ -1 +0,0 @@ - - [Improvement] Wizard references removed. (by @CodeWithEmad) \ No newline at end of file diff --git a/tutor/__about__.py b/tutor/__about__.py index 31820ca..194be8a 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__ = "16.0.3" +__version__ = "16.0.4" # 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