6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2025-02-02 09:28:25 +00:00

Merge branch 'master' into nightly

This commit is contained in:
Régis Behmo 2021-12-22 10:16:49 +01:00
commit 34c8199eea
3 changed files with 6 additions and 2 deletions

View File

@ -4,6 +4,10 @@ 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
- [Fix] Missing requirements file in `pip install tutor[full]`.

View File

@ -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.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

View File

@ -12,7 +12,7 @@ from .types import Config, ConfigValue
TEMPLATES_ROOT = pkg_resources.resource_filename("tutor", "templates")
VERSION_FILENAME = "version"
BIN_FILE_EXTENSIONS = [".ico", ".jpg", ".png", ".ttf", ".woff", ".woff2"]
BIN_FILE_EXTENSIONS = [".ico", ".jpg", ".patch", ".png", ".ttf", ".woff", ".woff2"]
class JinjaEnvironment(jinja2.Environment):