diff --git a/CHANGELOG.md b/CHANGELOG.md index 479686d894..3e8ca58493 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 +## v14.1.1 (2022-10-25) + - [Deprecation] Tutor is no longer compatible with Python 3.6. (by @regisb) - [Security] Fix xblock ajax handler vulnerability. (by @regisb) - [Improvement] Use web proxy gzip encoding to improve bandwidth. We observe a 75% size reduction on the LMS dashboard. (by @ghassanmas) diff --git a/tutor/__about__.py b/tutor/__about__.py index 6ed2c398c6..58583afbeb 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__ = "14.1.0" +__version__ = "14.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