diff --git a/CHANGELOG.md b/CHANGELOG.md index 69c42e8..545153f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,13 @@ instructions, because git commits are used to generate release notes: + +## v15.3.2 (2023-03-13) + +- [Bugfix] Use supported YouTube API for transcripts imports. (by @mariajgrimaldi) +- [Feature] Add `tutor config patches list` CLI for listing available patches. (by @mafermazu) +- [Bugfix] Add the missing `UWSGI_WORKERS` env variables to the lms and cms k8s deployments. (by @MoisesGSalas) + ## v15.3.1 (2023-02-28) diff --git a/changelog.d/20230307_132140_maria.grimaldi_fix_transcripts.md b/changelog.d/20230307_132140_maria.grimaldi_fix_transcripts.md deleted file mode 100644 index 6e0e5f8..0000000 --- a/changelog.d/20230307_132140_maria.grimaldi_fix_transcripts.md +++ /dev/null @@ -1,12 +0,0 @@ - - - - -[Bugfix] Use supported YouTube API for transcripts imports (by @mariajgrimaldi) diff --git a/changelog.d/20230308_090007_maria.magallanes_listing_patches.md b/changelog.d/20230308_090007_maria.magallanes_listing_patches.md deleted file mode 100644 index 8db1b78..0000000 --- a/changelog.d/20230308_090007_maria.magallanes_listing_patches.md +++ /dev/null @@ -1,12 +0,0 @@ - - - - -[Feature] Add `tutor config patches list` CLI for listing available patches. (by @mafermazu) diff --git a/changelog.d/20230310_045537_moises.gonzalez_fix_k8s_uwsgi_workers.md b/changelog.d/20230310_045537_moises.gonzalez_fix_k8s_uwsgi_workers.md deleted file mode 100644 index c118ddd..0000000 --- a/changelog.d/20230310_045537_moises.gonzalez_fix_k8s_uwsgi_workers.md +++ /dev/null @@ -1,12 +0,0 @@ - - - - -- [Bugfix] Add the missing `UWSGI_WORKERS` env variables to the lms and cms k8s deployments. (by @MoisesGSalas) diff --git a/tutor/__about__.py b/tutor/__about__.py index 29260aa..0a8ef41 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__ = "15.3.1" +__version__ = "15.3.2" # 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