From 583cfb09dbd95c6a5ee7a113e88d5460494fda78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luca=20B=C3=B6sch?= Date: Sat, 12 Oct 2024 17:42:56 +0200 Subject: [PATCH] Release v4.5-r1 --- .github/workflows/moodle-plugin-ci.yml | 24 ++++++++++++++++++++++++ CHANGES.md | 4 ++++ README.md | 2 +- version.php | 6 +++--- 4 files changed, 32 insertions(+), 4 deletions(-) diff --git a/.github/workflows/moodle-plugin-ci.yml b/.github/workflows/moodle-plugin-ci.yml index 34c0ceb..4cd0e62 100644 --- a/.github/workflows/moodle-plugin-ci.yml +++ b/.github/workflows/moodle-plugin-ci.yml @@ -30,6 +30,30 @@ jobs: fail-fast: false matrix: include: + - php: 8.3 + moodle-branch: MOODLE_405_STABLE + database: pgsql + plugin-ci: ^4 + - php: 8.3 + moodle-branch: MOODLE_405_STABLE + database: mariadb + plugin-ci: ^4 + - php: 8.2 + moodle-branch: MOODLE_405_STABLE + database: pgsql + plugin-ci: ^4 + - php: 8.2 + moodle-branch: MOODLE_405_STABLE + database: mariadb + plugin-ci: ^4 + - php: 8.1 + moodle-branch: MOODLE_405_STABLE + database: pgsql + plugin-ci: ^4 + - php: 8.1 + moodle-branch: MOODLE_405_STABLE + database: mariadb + plugin-ci: ^4 - php: 8.3 moodle-branch: MOODLE_404_STABLE database: pgsql diff --git a/CHANGES.md b/CHANGES.md index e594b36..cf00126 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,10 @@ moodle-quiz_archive Changes ------- +### Release v4.5-r1 + +* 2024-10-12 - Assure Moodle 4.5 compatibility. + ### Release v4.4-r1 * 2024-04-21 - Assure PHP 8.3 compatibility. diff --git a/README.md b/README.md index 93711c5..e988762 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ moodle-quiz_archive [![Latest Release](https://img.shields.io/github/v/release/bfh/moodle-quiz_archive?sort=semver&color=orange)](https://github.com/bfh/moodle-quiz_archive/releases) [![Build Status](https://github.com/bfh/moodle-quiz_archive/workflows/Moodle%20Plugin%20CI/badge.svg?branch=main)](https://github.com/bfh/moodle-quiz_archive/actions?query=workflow%3A%22Moodle+Plugin+CI%22+branch%3Amain) [![PHP Support](https://img.shields.io/badge/php-7.2--8.3-blue)](https://github.com/bfh/moodle-quiz_archive/actions) -[![Moodle Support](https://img.shields.io/badge/Moodle-3.9--4.4+-orange)](https://github.com/bfh/moodle-quiz_archive/actions) +[![Moodle Support](https://img.shields.io/badge/Moodle-3.9--4.5+-orange)](https://github.com/bfh/moodle-quiz_archive/actions) [![License GPL-3.0](https://img.shields.io/github/license/bfh/moodle-quiz_archive?color=lightgrey)](https://github.com/bfh/moodle-quiz_archive/blob/main/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/bfh/moodle-quiz_archive)](https://github.com/bfh/moodle-quiz_archive/graphs/contributors) diff --git a/version.php b/version.php index 0d291b6..51437fe 100644 --- a/version.php +++ b/version.php @@ -24,9 +24,9 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2024042200; +$plugin->version = 2024101200; $plugin->requires = 2017110800; $plugin->component = 'quiz_archive'; $plugin->maturity = MATURITY_STABLE; -$plugin->release = 'v4.4-r1'; -$plugin->supported = [39, 404]; +$plugin->release = 'v4.5-r1'; +$plugin->supported = [39, 405];