From 4802ddc05066043a3db03524335a1cb50b3f1c2f Mon Sep 17 00:00:00 2001 From: Lyannic Date: Thu, 13 Jun 2024 17:47:42 +0200 Subject: [PATCH 1/2] Add changelog entry for v1.7.1 --- changelog.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/changelog.md b/changelog.md index ae5e23b..1c5fbdc 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,11 @@ All important changes to this plugin will be documented in this file. +## [v1.7.1] - 2024-06-13 +### Fixed +- Fixed Moodle >=4.3 compatibility bug, where `Require passing grade` was not being displayed in completion configuration. +- Fixed PHP 8.2 deprecation warning for dynamically created properties. + ## [v1.7.0] - 2024-05-06 ### Added - Preselection of currently selected Problem when opening the Problem selector From 9983de26d9c72918456fb72adbb5e51446c7fd78 Mon Sep 17 00:00:00 2001 From: Lyannic Date: Thu, 13 Jun 2024 18:07:42 +0200 Subject: [PATCH 2/2] Bump version to 1.7.1 --- version.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.php b/version.php index b6fd4cb..79c61d7 100644 --- a/version.php +++ b/version.php @@ -25,10 +25,10 @@ defined('MOODLE_INTERNAL') || die; -$plugin->version = 2024050600; // The current module version (Date: YYYYMMDDXX). +$plugin->version = 2024061300; // The current module version (Date: YYYYMMDDXX). $plugin->component = 'mod_mumie'; // Full name of the plugin (used for diagnostics). $plugin->requires = 2022041900; -$plugin->release = "v1.7.0"; +$plugin->release = "v1.7.1"; $plugin->maturity = MATURITY_STABLE; $plugin->dependencies = array( 'auth_mumie' => 2024050600,