From 94941d0387b6e173d4d1ebb012e227806bc62f01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Wed, 22 Dec 2021 00:46:13 +0100 Subject: [PATCH] v13.0.2 - [Security] Prevent non-staff users from searching usernames by email. --- CHANGELOG.md | 2 ++ tutor/__about__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf94b6d24e..f5b7274c88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ Note: Breaking changes between versions are indicated by "💥". ## Unreleased +## v13.0.2 + - [Security] Prevent non-staff users from searching usernames by email. ## v13.0.1 diff --git a/tutor/__about__.py b/tutor/__about__.py index 05fe16ec4a..1d38068a09 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__ = "13.0.1" +__version__ = "13.0.2" # 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