From 5dce3ed4886effd2190e60dd66a95f4152519991 Mon Sep 17 00:00:00 2001 From: Nihaal Shaikh Date: Tue, 3 Mar 2026 13:26:17 +0100 Subject: [PATCH] Update #86c8jzuvd - upgraded plugin to support Moodle 5.1, moved changelog to separate file --- CHANGELOG.md | 25 +++++++++++++++++++++++++ README.md | 9 ++------- version.php | 6 +++--- 3 files changed, 30 insertions(+), 10 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7492a5d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,25 @@ +# Changelog + +## 5.1.0 (2026030300) +- Tested and verified on Moodle 5.1 + +## 5.0.2 (2025080401) +- Added support for pre-configuring IP ranges by admins + +## 5.0.1 (2025052200) +- Tested on Moodle 5.0 + +## 4.5.0 (2025040400) +- Tested on Moodle 4.5 + +## 4.4.0 (2024072000) +- Tested on Moodle 4.4 + +## 4.0.3 (2022052801) +- Test in Moodle 4.0 @[hamzatamyachte](https://github.com/hamzatamyachte) + +## 4.0.2 (2022052800) +- Fixed the [issue 6](https://github.com/ldesignmediaNL/moodle-availability_ipaddress/issues/6) @[hamzatamyachte](https://github.com/hamzatamyachte) + +## 4.0.1 (2022021100) +- Thanks for adding ip-range support @[juacas](https://github.com/juacas) diff --git a/README.md b/README.md index 0c7784d..2b9b60f 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ activity, making it accessible only to users from specified IP addresses. ![Moodle404](https://img.shields.io/badge/moodle-4.4-F98012.svg?logo=moodle) ![Moodle405](https://img.shields.io/badge/moodle-4.5-F98012.svg?logo=moodle) ![Moodle500](https://img.shields.io/badge/moodle-5.0-F98012.svg?logo=moodle) +![Moodle501](https://img.shields.io/badge/moodle-5.1-F98012.svg?logo=moodle) ![PHP7.4](https://img.shields.io/badge/PHP-7.4-777BB4.svg?logo=php) ![PHP8.0](https://img.shields.io/badge/PHP-8.0-777BB4.svg?logo=php) @@ -64,10 +65,4 @@ Contributions are welcome and will be fully credited. We accept contributions vi ## Changelog -- 2024080401 Added support for pre-configuring IP ranges by admins -- 2025052200 Tested on Moodle 5.0 -- 2025040400 Tested on Moodle 4.5 -- 2024072000 Tested on Moodle 4.4 -- 2022021100 Thanks for adding ip-range support @[juacas](https://github.com/juacas) -- 2022052800 Fixed the [issue 6](https://github.com/ldesignmediaNL/moodle-availability_ipaddress/issues/6) @[hamzatamyachte](https://github.com/hamzatamyachte) -- 2022052801 Test in Moodle 4.0 @[hamzatamyachte](https://github.com/hamzatamyachte) +See [CHANGELOG.md](CHANGELOG.md) for a full list of changes. diff --git a/version.php b/version.php index d764e5d..75516ed 100644 --- a/version.php +++ b/version.php @@ -27,8 +27,8 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'availability_ipaddress'; -$plugin->version = 2025080401; -$plugin->release = '5.0.2'; +$plugin->version = 2026030300; +$plugin->release = '5.1.0'; $plugin->requires = 2016120500; $plugin->maturity = MATURITY_STABLE; -$plugin->supported = [400, 500]; +$plugin->supported = [400, 501];