diff --git a/README.md b/README.md index ae2d3b69..66a0335b 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,14 @@ server is properly synchronized with the time servers. ## Changelog +v4.8.0 + +- Feature: Support Server-to-Server OAuth app #387 (thanks @haietza, @mhughes2k) + - New settings `zoom/accountid`, `zoom/clientid`, `zoom/clientsecret` + - Reminder: You must [switch from JWT to Server-to-Server OAuth by June 2023](https://marketplace.zoom.us/docs/guides/build/jwt-app/jwt-faq/). +- Regression: Locked settings were not being applied #407 (thanks @krab-stik) + - Introduced in v4.7.0 while adding support for automatic recording. + v4.7.0 - Feature: Allow automatic recording #390 (thanks @aduranterres, @lcollong) diff --git a/version.php b/version.php index 0900ed3d..b9ed6303 100755 --- a/version.php +++ b/version.php @@ -25,8 +25,8 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'mod_zoom'; -$plugin->version = 2022092200; -$plugin->release = 'v4.7.0'; +$plugin->version = 2022092900; +$plugin->release = 'v4.8.0'; $plugin->requires = 2017051500.00; $plugin->maturity = MATURITY_STABLE; $plugin->cron = 0;