From c9ac12fdd7b973b318e9180f6cb87b6bf4864769 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Thu, 24 Nov 2022 16:25:34 +0100 Subject: [PATCH] v14.2.1 (2022-11-24) - [Improvement] Auto-completion of `plugins` and `config` arguments: `plugins enable/disable NAME`, `plugins install PATH`, `config save --set KEY=VAL`, `config save --unset KEY`, `config printvalue KEY`. (by @regisb) - [Bugfix] Fix minimum click version (>= 8.0.0) when installing tutor from pip. - [Improvement] Enable CORS by default for both LMS and CMS by moving those settings to the `common_all` partial. (by @arbrandes) --- CHANGELOG.md | 5 ++++- changelog.d/20221124_161803_regis_HEAD.md | 1 - changelog.d/20221124_162326_regis.md | 1 - tutor/__about__.py | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) delete mode 100644 changelog.d/20221124_161803_regis_HEAD.md delete mode 100644 changelog.d/20221124_162326_regis.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 72e17ac..73840d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,8 +20,11 @@ instructions, because git commits are used to generate release notes: -## Unreleased + +## v14.2.1 (2022-11-24) +- [Improvement] Auto-completion of `plugins` and `config` arguments: `plugins enable/disable NAME`, `plugins install PATH`, `config save --set KEY=VAL`, `config save --unset KEY`, `config printvalue KEY`. (by @regisb) +- [Bugfix] Fix minimum click version (>= 8.0.0) when installing tutor from pip. - [Improvement] Enable CORS by default for both LMS and CMS by moving those settings to the `common_all` partial. (by @arbrandes) ## v14.2.0 (2022-11-21) diff --git a/changelog.d/20221124_161803_regis_HEAD.md b/changelog.d/20221124_161803_regis_HEAD.md deleted file mode 100644 index 06373b7..0000000 --- a/changelog.d/20221124_161803_regis_HEAD.md +++ /dev/null @@ -1 +0,0 @@ -- [Improvement] Auto-completion of `plugins` and `config` arguments: `plugins enable/disable NAME`, `plugins install PATH`, `config save --set KEY=VAL`, `config save --unset KEY`, `config printvalue KEY`. (by @regisb) diff --git a/changelog.d/20221124_162326_regis.md b/changelog.d/20221124_162326_regis.md deleted file mode 100644 index a049041..0000000 --- a/changelog.d/20221124_162326_regis.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Fix minimum click version (>= 8.0.0) when installing tutor from pip. diff --git a/tutor/__about__.py b/tutor/__about__.py index 928c3ff..6a6c4e3 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__ = "14.2.0" +__version__ = "14.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