From 4b587e41d47cd5ded38793f7b3ec7e2effbfcb5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Fri, 6 May 2022 15:01:47 +0200 Subject: [PATCH] - [Fix] Fix broken file upload in studio because of unpinned studio-frontend requirement (see [discussion](https://discuss.overhang.io/t/missing-js-css-files-missing-from-openedx-docker-image-in-studio/2629) and [pull request](https://github.com/openedx/edx-platform/pull/30309)) (by @regisb. Thanks @uetuluk!). - [Fix] "The Compose file is invalid" error on mounting dev-only folders. (by @regisb) - [Fix] CMS settings in development. (by @regisb) --- CHANGELOG.md | 6 ++++-- tutor/__about__.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dafe44b..187fe64 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 -- [Fix] Fix broken file upload in studio because of unpinned studio-frontend requirement (see [discussion](https://discuss.overhang.io/t/missing-js-css-files-missing-from-openedx-docker-image-in-studio/2629) and [pull request](https://github.com/openedx/edx-platform/pull/30309)) (thanks @uetuluk!). -- [Fix] "The Compose file is invalid" error on mounting dev-only folders. +## v13.2.1 (2022-05-06) + +- [Fix] Fix broken file upload in studio because of unpinned studio-frontend requirement (see [discussion](https://discuss.overhang.io/t/missing-js-css-files-missing-from-openedx-docker-image-in-studio/2629) and [pull request](https://github.com/openedx/edx-platform/pull/30309)) (by @regisb. Thanks @uetuluk!). +- [Fix] "The Compose file is invalid" error on mounting dev-only folders. (by @regisb) - [Fix] CMS settings in development. (by @regisb) ## v13.2.0 (2022-04-24) diff --git a/tutor/__about__.py b/tutor/__about__.py index 1ec297d..29c37b1 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.0" +__version__ = "13.2.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