From 748340f751b61438eade8eb8838d566d112e892f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Tue, 29 Aug 2023 11:43:24 +0200 Subject: [PATCH] v16.1.1 --- CHANGELOG.md | 5 +++++ changelog.d/20230824_104119_fghaas_utf8mb3_k8s.md | 1 - tutor/__about__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) delete mode 100644 changelog.d/20230824_104119_fghaas_utf8mb3_k8s.md diff --git a/CHANGELOG.md b/CHANGELOG.md index a6a05a9..08a46ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,11 @@ instructions, because git commits are used to generate release notes: + +## v16.1.1 (2023-08-29) + +- 💥[Bugfix] Apply "fix mysql crash after upgrade to Palm" from 16.1.0 to `tutor k8s` deployments, as well. Users previously running `tutor k8s` with `RUN_MYSQL: true`, with any version between 16.0.0 and 16.1.0 including, might have to fix their data manually. For users running `tutor local`, this change has no effect, as the underlying issue was already fixed in 16.1.0. For users running `tutor k8s` with `RUN_MYSQL: false`, this change is also a no-op. (by @fghaas) + ## v16.1.0 (2023-08-16) diff --git a/changelog.d/20230824_104119_fghaas_utf8mb3_k8s.md b/changelog.d/20230824_104119_fghaas_utf8mb3_k8s.md deleted file mode 100644 index b732065..0000000 --- a/changelog.d/20230824_104119_fghaas_utf8mb3_k8s.md +++ /dev/null @@ -1 +0,0 @@ -- 💥[Bugfix] Apply "fix mysql crash after upgrade to Palm" from 16.1.0 to `tutor k8s` deployments, as well. Users previously running `tutor k8s` with `RUN_MYSQL: true`, with any version between 16.0.0 and 16.1.0 including, might have to fix their data manually. For users running `tutor local`, this change has no effect, as the underlying issue was already fixed in 16.1.0. For users running `tutor k8s` with `RUN_MYSQL: false`, this change is also a no-op. (by @fghaas) diff --git a/tutor/__about__.py b/tutor/__about__.py index 45e43fc..0066407 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__ = "16.1.0" +__version__ = "16.1.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