diff --git a/README.md b/README.md index 6433e31..56e3831 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Moodle - Local Reminders --- -![Version](https://img.shields.io/badge/version-v2.7.2-blue) +![Version](https://img.shields.io/badge/version-v2.7.3-blue) ![Moodle Version](https://img.shields.io/badge/moodle-%3E%3D%203.5-orange) ![Maturiy](https://img.shields.io/badge/maturity-STABLE-brightgreen) ![License](https://img.shields.io/badge/license-GPL%20v3-green) @@ -99,6 +99,10 @@ In addition to above, user can control reminders for calendar event changes per ## Changelog +### v2.7.3 + * Add plugin disabled message to course page #181 + * Prevent duplicate reminders for recurring events #184 + ### v2.7.2 * Plugin runs not on time #179 * Custom schedule for activity does not play nice with Explicit Reminder Activation #167 diff --git a/version.php b/version.php index 7e1c463..61bdd52 100644 --- a/version.php +++ b/version.php @@ -25,8 +25,8 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2024040200; +$plugin->version = 2024082400; $plugin->requires = 2018051700; // Require moodle 3.5 or higher. -$plugin->release = '2.7.2'; +$plugin->release = '2.7.3'; $plugin->maturity = MATURITY_STABLE; $plugin->component = 'local_reminders';