From 9fca8ba92838bde18ec232f53195655771107ac7 Mon Sep 17 00:00:00 2001 From: Daniil Fajnberg Date: Wed, 10 Apr 2024 15:30:00 +0200 Subject: [PATCH] Bump version Add `CHANGELOG.md` --- CHANGELOG.md | 19 +++++++++++++++++++ version.php | 4 ++-- 2 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a20b902 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + +## 1.4.0 + +- **Drop support for Moodle 3.9; require at least Moodle 4.1** +- Fix rendering bug for custom licenses +- Adhere more to Moodle code style guidelines + +## 1.3.1 + +- Fix Moodle 3.9 compatibility bug + +## 1.3.0 + +- Add an extra column in the table to show if files embedded in some text fields are actually used +- Add privacy provider implementing null_provider +- Add GitHub Workflow/Actions +- Fix button styling +- Fix deprecated method warnings diff --git a/version.php b/version.php index f9cda0c..c929679 100644 --- a/version.php +++ b/version.php @@ -26,9 +26,9 @@ defined('MOODLE_INTERNAL') || die; -$plugin->version = 2022060800; +$plugin->version = 2024041000; $plugin->requires = 2022112800; // Require at least Moodle 4.1.0. $plugin->cron = 0; $plugin->component = "local_listcoursefiles"; $plugin->maturity = MATURITY_STABLE; -$plugin->release = "1.3.1"; +$plugin->release = "1.4.0";