From 2e83181e9635b6f7f640d271d1a9b4386ca04bb8 Mon Sep 17 00:00:00 2001 From: Jonathan Champ Date: Fri, 10 Nov 2023 12:11:10 -0500 Subject: [PATCH] release: v5.1.2 --- README.md | 8 ++++++++ version.php | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1175bb12..09acf72a 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,14 @@ server is properly synchronized with the time servers. ## Changelog +v5.1.2 + +- Bugfix: Skip redundant calendar permissions check #535 (thanks @danowar2k) +- Bugfix: Initialize scopes from cache to avoid TypeError #542 (thanks @foxlapinou) +- Regression: Restore exceptions were not being caught #537 + - Introduced in v5.1.1 when moving classes into namespaces. +- Code quality: Void test return types in moodle-cs v3.3.10 #536 + v5.1.1 - Bugfix: Get all meeting recordings, not just the last occurrence #517 (thanks @LGPoly) diff --git a/version.php b/version.php index 818b9c29..164cabfe 100755 --- a/version.php +++ b/version.php @@ -25,8 +25,8 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'mod_zoom'; -$plugin->version = 2023101900; -$plugin->release = 'v5.1.1'; +$plugin->version = 2023111000; +$plugin->release = 'v5.1.2'; $plugin->requires = 2019052000; $plugin->maturity = MATURITY_STABLE; $plugin->cron = 0;