Skip to content

Commit

Permalink
mod_leganto: Bump version number and update changelog for v4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyjbutler committed Jan 5, 2024
1 parent bd5390b commit 25401be
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ visibility).
Changelog
---------

2024-01-05 v4.1.0

* Fix inline list display inconsistencies in Moodle 4.1+
* Refactor output renderer and renderable classes
* Address new issues identified by code checker and CI tests

2022-06-01 v4.0.0

* Fix JS selectors and make transitions less jarring
Expand Down Expand Up @@ -70,14 +76,14 @@ Installing from the Git repository (recommended if you installed Moodle from
Git):

Follow the instructions at
https://docs.moodle.org/400/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository,
e.g. for the Moodle 4.0.x code:
https://docs.moodle.org/401/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository,
e.g. for the Moodle 4.1.x code:

$ cd /path/to/your/moodle/
$ cd mod/
$ git clone https://github.com/tonyjbutler/moodle-mod_leganto.git leganto
$ cd leganto/
$ git checkout -b MOODLE_400_STABLE origin/MOODLE_400_STABLE
$ git checkout -b MOODLE_401_STABLE origin/MOODLE_401_STABLE
$ git branch -d master
$ cd /path/to/your/moodle/
$ echo /mod/leganto/ >> .git/info/exclude
Expand All @@ -98,7 +104,7 @@ Updating Moodle
---------------
If you installed Moodle and the Leganto reading list module from Git you can
run the following commands to update both (see
https://docs.moodle.org/400/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository):
https://docs.moodle.org/401/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository):

$ cd /path/to/your/moodle/
$ git pull
Expand Down
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@

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

$plugin->version = 2022060100; // The current module version (Date: YYYYMMDDXX).
$plugin->requires = 2022041900; // Requires this Moodle version.
$plugin->version = 2024010500; // The current module version (Date: YYYYMMDDXX).
$plugin->requires = 2022112800; // Requires this Moodle version.
$plugin->component = 'mod_leganto'; // Full name of the plugin (used for diagnostics).
$plugin->cron = 0;
$plugin->maturity = MATURITY_STABLE;
$plugin->release = 'v4.0.0 (Build: 20220601)';
$plugin->release = 'v4.1.0 (Build: 20240105)';

0 comments on commit 25401be

Please sign in to comment.