From e89ff49223ef4624058ab77ccb72c1394abb8be5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Wed, 8 Dec 2021 11:06:48 +0100 Subject: [PATCH] v12.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 💥[Improvement] Fail on incorrect image name argument in `images build/pull/push/printtag` commands. - [Bugfix] Remove trailing slashes in docker-compose files for [compatibility with docker-compose v2 in WSL](https://github.com/docker/compose/issues/8558). - [Improvement] `settheme` now works with preview domain. - [Feature] Allow specifying extra pip packages through config.yml. --- CHANGELOG.md | 2 +- tutor/__about__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f4bb7afe2..5903e0a771 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Note: Breaking changes between versions are indicated by "💥". -## Unreleased +## v12.2.0 (2021-12-08) - [Bugfix] Fix incorrect "from" address in course bulk emails (see [pull request](https://github.com/edx/edx-platform/pull/29001)). - 💥[Improvement] Fail on incorrect image name argument in `images build/pull/push/printtag` commands. diff --git a/tutor/__about__.py b/tutor/__about__.py index cf1fe44e45..ecd4733a20 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__ = "12.1.7" +__version__ = "12.2.0" # 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