From 8a990c2bf7a7e14344603dd3a9b27726ec5a3f29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Fri, 3 Jun 2022 15:00:03 +0200 Subject: [PATCH] v13.3.0 (2022-06-03) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - [Security] Apply logout redirect url security fix. (by @regisb) - [Feature] Make it possible to force the rendering of a given template, even when the template path matches an ignore pattern. (by @regisb) - 💥[Fix] Get rid of the `tutor config render` command, which is useless now that themes can be implemented as plugins. (by @regisb) --- CHANGELOG.md | 2 ++ tutor/__about__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4170d26..9fd5f66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,8 @@ Every user-facing change should have an entry in this changelog. Please respect ## Unreleased +## v13.3.0 (2022-06-03) + - [Security] Apply logout redirect url security fix. (by @regisb) - [Feature] Make it possible to force the rendering of a given template, even when the template path matches an ignore pattern. (by @regisb) - 💥[Fix] Get rid of the `tutor config render` command, which is useless now that themes can be implemented as plugins. (by @regisb) diff --git a/tutor/__about__.py b/tutor/__about__.py index cdba19b..18406ff 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__ = "13.2.3" +__version__ = "13.3.0" # 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