Skip to content

Commit

Permalink
Remove support for Moodle versions 4.1, 4.2 and 4.3. Add support for …
Browse files Browse the repository at this point in the history
…Moodle 4.5
  • Loading branch information
Glutamat42 committed Oct 26, 2024
1 parent 82aef2f commit 1fcaf43
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 25 deletions.
18 changes: 2 additions & 16 deletions .github/workflows/moodle-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,9 @@ jobs:
fail-fast: false
matrix:
php: ['8.1', '8.2', '8.3']
moodle-branch: ['MOODLE_401_STABLE', 'MOODLE_402_STABLE', 'MOODLE_403_STABLE', 'MOODLE_404_STABLE']
moodle-branch: ['MOODLE_404_STABLE', 'MOODLE_405_STABLE']
database: [pgsql, mariadb]
experimental: [false]
exclude:
- php: '8.2'
moodle-branch: 'MOODLE_401_STABLE'
- php: '8.3'
moodle-branch: 'MOODLE_401_STABLE'
- php: '8.3'
moodle-branch: 'MOODLE_402_STABLE'
- php: '8.3'
moodle-branch: 'MOODLE_403_STABLE'
include:
- php: '8.3'
moodle-branch: 'main'
Expand Down Expand Up @@ -146,12 +137,7 @@ jobs:
continue-on-error: true
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ matrix.php == '8.1' && matrix.moodle-branch == 'MOODLE_401_STABLE' && matrix.database == 'mariadb' }}
if: ${{ matrix.php == '8.3' && matrix.moodle-branch == 'MOODLE_405_STABLE' && matrix.database == 'mariadb' }}
run: |
# "pending completion" coveralls issue also appeared directly using php-coveralls
moodle-plugin-ci coveralls-upload
- name: "Coveralls: Close parallel build (workaround)"
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,12 @@ Folgende Versionen werden unterstützt (mit mariadb und postresql getestet):

| Moodle Branch | PHP Version |
|-------------------------|-------------|
| MOODLE_401_STABLE (LTS) | 8.1 |
| MOODLE_402_STABLE | 8.1 |
| MOODLE_402_STABLE | 8.2 |
| MOODLE_403_STABLE | 8.1 |
| MOODLE_403_STABLE | 8.2 |
| MOODLE_404_STABLE | 8.1 |
| MOODLE_404_STABLE | 8.2 |
| MOODLE_404_STABLE | 8.3 |
| MOODLE_405_STABLE (LTS) | 8.1 |
| MOODLE_405_STABLE (LTS) | 8.2 |
| MOODLE_405_STABLE (LTS) | 8.3 |

## Installation
1. Dieses Plugin benötigt das Plugin `local_adler` als Abhängigkeit. Beide müssen zeitgleich installiert werden (= vor dem upgrade in die Moodle-Installation entpackt sein). Installation siehe `local_adler`
Expand Down
8 changes: 4 additions & 4 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

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

$plugin->version = 2024060300;
$plugin->requires = 2022112800; // Moodle version
$plugin->version = 2024102600;
$plugin->requires = 2024042200; // Moodle version
$plugin->component = 'availability_adler';
$plugin->release = '3.0.1-dev';
$plugin->maturity = MATURITY_ALPHA;
$plugin->release = '4.0.0-rc.1';
$plugin->maturity = MATURITY_RC;
$plugin->dependencies = array(
'local_logging' => ANY_VERSION,
);

0 comments on commit 1fcaf43

Please sign in to comment.