Skip to content

Commit

Permalink
Release v4.5-r1
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaboesch committed Oct 12, 2024
1 parent d8517dd commit 583cfb0
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/moodle-plugin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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];

0 comments on commit 583cfb0

Please sign in to comment.