From bbba7b6c4e7e8b08b3d4be7323445ce78c2ce954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Tue, 25 Jan 2022 08:38:14 +0100 Subject: [PATCH] v13.1.1 (2022-01-25) - [Bugfix] Fix authentication in development due to missing SameSite policy on session ID cookie. - [Bugfix] Display properly themed favicon.ico image in LMS, Studio and microfrontends. - [Bugfix] Fix "LazyStaticAbsoluteUrl is not JSON serializable" error when sending bulk emails. - [Bugfix] Fix `tutor local importdemocourse` fails when platform is not up. --- CHANGELOG.md | 2 ++ tutor/__about__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83d709a..32a7b31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ Note: Breaking changes between versions are indicated by "💥". ## Unreleased +## v13.1.1 (2022-01-25) + - [Bugfix] Fix authentication in development due to missing SameSite policy on session ID cookie. - [Bugfix] Display properly themed favicon.ico image in LMS, Studio and microfrontends. - [Bugfix] Fix "LazyStaticAbsoluteUrl is not JSON serializable" error when sending bulk emails. diff --git a/tutor/__about__.py b/tutor/__about__.py index dce4178..b395d8b 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.1.0" +__version__ = "13.1.1" # 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