From bd92d547f0c3003eeedfe720fffe69170ea56c75 Mon Sep 17 00:00:00 2001 From: Tim Hunt Date: Mon, 15 Apr 2024 13:28:54 +0100 Subject: [PATCH] Update version and readme for the 5.2.1 release --- CHANGES.md | 5 +++++ README.md | 6 +++--- version.php | 4 ++-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 5aabb170..3eeab33e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Change log for the StudentQuiz activity +## Version 5.2.1 + +* Added Compatability with Moodle 4.3 +* Fixed a bug with permission checking of state changes. + ## Version 5.2.0 Mainly a bugfix release, but with one new feature adding activity completion. diff --git a/README.md b/README.md index 6b696e5a..a44d5ffc 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # StudentQuiz [![Latest Release](https://img.shields.io/github/v/release/studentquiz/moodle-mod_studentquiz?sort=semver&color=orange)](https://github.com/studentquiz/moodle-mod_studentquiz/releases) -[![Build Status](https://github.com/studentquiz/moodle-mod_studentquiz/workflows/Moodle%20Plugin%20CI/badge.svg?branch=master)](https://github.com/studentquiz/moodle-mod_studentquiz/actions?query=workflow%3A%22Moodle+Plugin+CI%22+branch%3Amaster) +[![Moodle Plugin CI](https://github.com/studentquiz/moodle-mod_studentquiz/actions/workflows/moodle-plugin-ci.yml/badge.svg)](https://github.com/studentquiz/moodle-mod_studentquiz/actions/workflows/moodle-plugin-ci.yml) [![PHP Support](https://img.shields.io/badge/php-7.3--8.2-blue)](https://github.com/studentquiz/moodle-mod_studentquiz/actions) -[![Moodle Support](https://img.shields.io/badge/Moodle-4.0--4.2-orange)](https://github.com/studentquiz/moodle-mod_studentquiz/actions) +[![Moodle Support](https://img.shields.io/badge/Moodle-4.0--4.3-orange)](https://github.com/studentquiz/moodle-mod_studentquiz/actions) [![License GPL-3.0](https://img.shields.io/github/license/studentquiz/moodle-mod_studentquiz?color=lightgrey)](https://github.com/studentquiz/moodle-mod_studentquiz/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/studentquiz/moodle-mod_studentquiz)](https://github.com/studentquiz/moodle-mod_studentquiz/graphs/contributors) @@ -46,7 +46,7 @@ You can find manuals for each role in the [manuals website](https://docs.moodle. Supported and tested with: -- Moodle 4.0, 4.1 and 4.2 - if you need a version compatible with earlier versions of Moodle, look on the +- Moodle 4.0, 4.1, 4.2 and 4.3 - if you need a version compatible with earlier versions of Moodle, look on the (MOODLE_3X_STABLE branch)[https://github.com/studentquiz/moodle-mod_studentquiz/tree/MOODLE_3X_STABLE] - PHP 7.3, 7.4, 8.0, 8.1 and 8.2 - Databases: MySQL, MariaDB, PostgreSQL, SQL Server 2017 (experimental) diff --git a/version.php b/version.php index 74ce754e..dbe9eac8 100644 --- a/version.php +++ b/version.php @@ -24,8 +24,8 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2023081702; +$plugin->version = 2024011900; $plugin->requires = 2022041900; // Version MOODLE_4.0. $plugin->component = 'mod_studentquiz'; $plugin->maturity = MATURITY_STABLE; -$plugin->release = 'v5.2.0'; +$plugin->release = 'v5.2.1';