From 5059e1d8796587c831a3dab8b721736de0a1369c Mon Sep 17 00:00:00 2001 From: Nicolas Martignoni Date: Sun, 1 Oct 2023 14:49:40 +0200 Subject: [PATCH] Update release notes, version number and date --- CHANGELOG.md | 19 +++++++++++++++++++ version.php | 6 +++--- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6a5348..696391a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/) and follow principles of [keep a changelog](https://keepachangelog.com). +## Version 2.17.0, 2023-10-01 + +### Add +- Add support of NetworkManager for upcoming Bookworm-based RPi OS version (PR #123). +- Add detection of just announced new Raspberry Pi 5 (issue #122). + +### Changed +- Better implementation of MoodleBox settings at top level of administration navigation (see #115, commit b4c94dc). + +### Fixed +- Fix completely script to work with released versions of MoodleBox image (issue #114). +- Prevent more PHPDocs errors (no issue number, commits dd38ff0, 9915274 and 04aaf38). + +## Version 2.16.3, 2023-09-17 + +### Fixed +- Fix script to work with released versions of MoodleBox image (issue #114). +- Multiple PHPDocs warnings for deprecated syntax (issue #121). + ## Version 2.16.2, 2023-09-16 ### Fixed diff --git a/version.php b/version.php index 0666b1b..f4d7963 100644 --- a/version.php +++ b/version.php @@ -26,9 +26,9 @@ $plugin = new stdClass(); -$plugin->version = 2023093000; -$plugin->release = '2.17.0-dev'; +$plugin->version = 2023100100; +$plugin->release = '2.17.0'; $plugin->requires = 2018120300; $plugin->supported = [36, 420]; -$plugin->maturity = MATURITY_ALPHA; +$plugin->maturity = MATURITY_STABLE; $plugin->component = 'tool_moodlebox';