Skip to content

Commit

Permalink
Update the version number for the 5.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
timhunt committed Dec 22, 2022
1 parent c709b49 commit be607c4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 17 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/moodle-plugin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
mariadb:
image: mariadb:10.5
image: mariadb:10
env:
MYSQL_USER: 'root'
MYSQL_ALLOW_EMPTY_PASSWORD: "true"
Expand All @@ -36,7 +36,8 @@ jobs:
# - each moodle version at least once
# - each database at least once
include:
- {php: '7.3', moodle-branch: MOODLE_400_STABLE, database: mariadb}
- {php: '7.3', moodle-branch: MOODLE_400_STABLE, database: pgsql}
- {php: '7.4', moodle-branch: MOODLE_401_STABLE, database: mariadb}
- {php: '8.0', moodle-branch: master, database: pgsql}

steps:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

[![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)
[![PHP Support](https://img.shields.io/badge/php-7.3_--_8.0-blue)](https://github.com/studentquiz/moodle-mod_studentquiz/actions)
[![Moodle Support](https://img.shields.io/badge/Moodle-%3E%3D%203.9-blue)](https://github.com/studentquiz/moodle-mod_studentquiz/actions)
[![PHP Support](https://img.shields.io/badge/php-7.3--8.0-blue)](https://github.com/studentquiz/moodle-mod_studentquiz/actions)
[![Moodle Support](https://img.shields.io/badge/Moodle-4.0--4.1+-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)

Expand Down Expand Up @@ -40,7 +40,7 @@ For changes and instructions please read the [Release Notes](https://github.com/

## Documentation

You can find manuals for each role in the [manuals website](https://docs.moodle.org/38/en/StudentQuiz_module).
You can find manuals for each role in the [manuals website](https://docs.moodle.org/40/en/StudentQuiz_module).

## Compatibility

Expand Down
21 changes: 9 additions & 12 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,17 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Defines the version and other meta-info about the plugin
* StudentQuiz activity version information.
*
* Setting the $plugin->version to 0 prevents the plugin from being installed.
* See https://docs.moodle.org/dev/version.php for more info.
*
* @package mod_studentquiz
* @copyright 2017 HSR (http://www.hsr.ch) <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @package mod_studentquiz
* @copyright 2017 HSR (http://www.hsr.ch) <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

defined('MOODLE_INTERNAL') || die();

$plugin->component = 'mod_studentquiz';
$plugin->version = 2022080343;
$plugin->release = 'v5.0.0';
$plugin->requires = 2022020200; // Version MOODLE_4.0.
$plugin->cron = 0;
$plugin->version = 2022122200;
$plugin->requires = 2022020200; // Version MOODLE_4.0.
$plugin->component = 'mod_studentquiz';
$plugin->maturity = MATURITY_STABLE;
$plugin->release = 'v5.1.0';

0 comments on commit be607c4

Please sign in to comment.