diff --git a/CHANGELOG.md b/CHANGELOG.md index 576d246cd5..956c010d60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,11 @@ instructions, because git commits are used to generate release notes: + +## v18.1.1 (2024-07-04) + +- [Bugfix] Fix `mysql-native-password is not loaded` error in MySQL 8.4 when upgrading from tutor 15 or an earlier release to tutor 18 by enabling the plugin. (by @Danyal-Faheem) + ## v18.1.0 (2024-06-25) diff --git a/changelog.d/20240704_112127_danyal.faheem_fix_mysql_native_password_plugin.md b/changelog.d/20240704_112127_danyal.faheem_fix_mysql_native_password_plugin.md deleted file mode 100644 index edfd9f40ca..0000000000 --- a/changelog.d/20240704_112127_danyal.faheem_fix_mysql_native_password_plugin.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Fix `mysql-native-password is not loaded` error in MySQL 8.4 when upgrading from tutor 15 or an earlier release to tutor 18 by enabling the plugin. (by @Danyal-Faheem) \ No newline at end of file diff --git a/tutor/__about__.py b/tutor/__about__.py index c131e3e02c..214299363a 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__ = "18.1.0" +__version__ = "18.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