diff --git a/CHANGELOG.md b/CHANGELOG.md index d300630..a4b4dbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,8 +18,10 @@ Every user-facing change should have an entry in this changelog. Please respect ## Unreleased +## v13.2.3 (2022-05-30) + - [Fix] Truncate site display name to 50 characters with a warning, fixing data too long error for long site names. (by @navinkarkera) -- [Feature] Add patch to allow overriding final openedx docker image CMD +- [Feature] Add patch to allow overriding final openedx docker image CMD. - [Fix] Ignore Python plugins that cannot be loaded. (by @regisb) - [Improvement] Faster and more reliable builds with `npm clean-install` instead of `npm install`. (by @regisb. Thanks @ghassanmas!) - [Fix] Fix 500 error during studio login. (by @regisb) diff --git a/tutor/__about__.py b/tutor/__about__.py index d4d8c5a..36f9d66 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.2" +__version__ = "13.2.3" # 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