Skip to content

Commit

Permalink
Prepare release 1.5 for Moodle 4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
srobotta committed Oct 9, 2024
1 parent 287d2d4 commit 142e43a
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/moodle-plugin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,24 @@ jobs:
fail-fast: false
matrix:
include:
- php: '8.1'
moodle-branch: 'MOODLE_405_STABLE'
database: pgsql
- php: '8.2'
moodle-branch: 'MOODLE_405_STABLE'
database: pgsql
- php: '8.3'
moodle-branch: 'MOODLE_405_STABLE'
database: pgsql
- php: '8.1'
moodle-branch: 'MOODLE_405_STABLE'
database: mariadb
- php: '8.2'
moodle-branch: 'MOODLE_405_STABLE'
database: mariadb
- php: '8.3'
moodle-branch: 'MOODLE_405_STABLE'
database: mariadb
- php: '8.1'
moodle-branch: 'MOODLE_404_STABLE'
database: pgsql
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Moodle Tiny editor HTML Block plugin

![Release](https://img.shields.io/badge/Release-1.4-blue.svg)
![Release](https://img.shields.io/badge/Release-1.5-blue.svg)
![Supported](https://img.shields.io/badge/Moodle-4.1+-orange.svg)
[![Moodle Plugin CI](https://github.com/srobotta/moodle-tiny_htmlblock/workflows/Moodle%20Plugin%20CI/badge.svg?branch=master)](https://github.com/srobotta/moodle-tiny_htmlblock/actions?query=workflow%3A%22Moodle+Plugin+CI%22+branch%3Amaster)
[![License GPL-3.0](https://img.shields.io/github/license/srobotta/moodle-tiny_htmlblock?color=lightgrey)](https://github.com/srobotta/moodle-tiny_htmlblock/blob/master/LICENSE)
Expand Down Expand Up @@ -143,6 +143,9 @@ What is missing/not working:

## Version History

### 1.5
- Support for Moodle 4.5

### 1.4
- Support Moodle 4.4 and PHP 8.3.
- Lift software maturity to stable.
Expand Down
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
defined('MOODLE_INTERNAL') || die();

$plugin->component = 'tiny_htmlblock';
$plugin->release = '1.4';
$plugin->version = 2024043000;
$plugin->release = '1.5';
$plugin->version = 2024100900;
$plugin->requires = 2022112800;
$plugin->maturity = MATURITY_STABLE;
$plugin->supported = [401, 404];
$plugin->supported = [401, 405];

0 comments on commit 142e43a

Please sign in to comment.