diff --git a/CHANGES b/CHANGES index c84bb995..952914b7 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,12 @@ +3.0.3 (2021101011) + +Bug: Fix for Userlimit (CONTRIB-9140). +Bug: Fix Backport of checksum algorithm (CONTRIB-9139). +Bug: Fix for plugin and activity settings (CONTRIB-9110). +Bug: Fix js strings (CONTRIB-9103). +Bug: Fix null return value on muteonstart (CONTRIB-9100). +Bug: Fix print recent activity block (CONTRIB-9092). + 3.0.2 (2021101010) Bug: Fix precheck errors (CONTRIB-9069). diff --git a/README.md b/README.md index a7b02e2f..1f43717a 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Note that on previous versions of Moodle you will need to use the specific versi | Moodle 3.0 - 3.7 | v2.2-stable | v2.2.13 (2017101021) | | Moodle 3.2 - 3.10 | v2.3-stable | v2.3.6 (2019042011) | | Moodle 3.4 - 3.11 | v2.4-stable | v2.4.7 (2019101014) | -| Moodle 3.11 | v3.0-stable | v3.0.2 (2021101010) | +| Moodle 3.11 | v3.0-stable | v3.0.3 (2021101011) | | Moodle 4.0 | -- | moodle-core | diff --git a/RELEASENOTES b/RELEASENOTES index de0a6047..42b36f71 100644 --- a/RELEASENOTES +++ b/RELEASENOTES @@ -1,3 +1,12 @@ +3.0.3 (2021101011) + +Bug: Fix for Userlimit (CONTRIB-9140). +Bug: Backport of checksum algorithm (CONTRIB-9139). +Bug: Fix for plugin and activity settings (CONTRIB-9110). +Bug: Fix js strings (CONTRIB-9103). +Bug: Fix null return value on muteonstart (CONTRIB-9100). +Bug: Fix print recent activity block (CONTRIB-9092). + 3.0.2 (2021101010) Bug: Fix precheck errors (CONTRIB-9069). diff --git a/version.php b/version.php index 2b0fa321..b6566d2d 100644 --- a/version.php +++ b/version.php @@ -26,9 +26,9 @@ defined('MOODLE_INTERNAL') || die; -$plugin->version = 2021101010; +$plugin->version = 2021101011; $plugin->requires = 2020061500; $plugin->cron = 0; $plugin->component = 'mod_bigbluebuttonbn'; $plugin->maturity = MATURITY_STABLE; -$plugin->release = '3.0.2'; +$plugin->release = '3.0.3';