Skip to content

Commit

Permalink
Update version to '2.0.0' and raise required moodle version to 4.1.0 …
Browse files Browse the repository at this point in the history
…(we aren't supporting older moodle versions already for some time)
  • Loading branch information
Glutamat42 committed Nov 12, 2023
1 parent c6e2261 commit 3e57d95
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/moodle-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,9 @@ jobs:
fail-fast: false
matrix:
php: ['7.4', '8.1']
moodle-branch: ['MOODLE_311_STABLE', 'MOODLE_401_STABLE', 'MOODLE_402_STABLE']
moodle-branch: [MOODLE_401_STABLE', 'MOODLE_402_STABLE']
database: [pgsql, mariadb]
exclude:
- php: '8.1' # incompatible moodle <-> php combination
moodle-branch: 'MOODLE_311_STABLE'
- php: '7.4' # incompatible moodle <-> php combination
moodle-branch: 'MOODLE_402_STABLE'

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ Damit der mbz api endpunkt auch mit größeren Dateien funktioniert sind folgend


## Kompabilität
Die minimal notwendige Moodle Version ist auf 3.11.12 gesetzt, daher wird die Installation auf älteren Versionen nicht funktionieren.
Prinzipiell sollte das Plugin auch auf älteren Versionen funktionieren, dies wird aber nicht getestet.
Die minimal notwendige Moodle Version ist auf 4.1.0 gesetzt, daher wird die Installation auf älteren Versionen nicht funktionieren.
Prinzipiell sollte dieses Plugin auch auf älteren Versionen funktionieren, dies wird aber nicht getestet und spätestens bei der
Nutzung weiterer AdLer Plugins wird es zu Problemen kommen, da diese Features nutzen, die erst in neueren Moodle Versionen verfügbar sind.

Folgende Versionen werden unterstützt (mit mariadb und postresql getestet):

| Moodle Branch | PHP Version |
|-------------------------|-------------|
| MOODLE_311_STABLE | 7.4 |
| MOODLE_401_STABLE (LTS) | 7.4 |
| MOODLE_401_STABLE (LTS) | 8.1 |
| MOODLE_402_STABLE | 8.1 |
Expand Down
10 changes: 5 additions & 5 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@

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

$plugin->version = 2023110800;
$plugin->requires = 2021051712.05; // Moodle version
$plugin->version = 2023111200;
$plugin->requires = 2022112800; // Moodle version
$plugin->component = 'local_adler';
$plugin->maturity = MATURITY_ALPHA;
$plugin->release = '2.0.0-rc.2';
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '2.0.0';
$plugin->dependencies = array(
'availability_adler' => ANY_VERSION,
'availability_adler' => '2.0.0',
);

0 comments on commit 3e57d95

Please sign in to comment.