From 5cc420616d5ec5db90626c460022586de8a54e6e Mon Sep 17 00:00:00 2001 From: Nicolas Martignoni Date: Mon, 8 Nov 2021 23:11:32 +0100 Subject: [PATCH] Update version number, date and release notes for upcoming release --- CHANGELOG.md | 13 +++++++++++++ version.php | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index edecc28..e138869 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ 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.11.0, 2021-11-08 + +### Added +- Add detection of Raspberry Pi Zero 2 W (issue #99). + +### Changed +- Update installation instructions (no issue number, commits 2ebaa0f, ec09ab7). +- Update date/time command for robustness (no issue number, commit a1b8fc5). + +### Fixed +- Optimize admin tree loading (no issue number, commit 8f524c6). +- Remove French language file (issue #100). + ## Version 2.10.0, 2021-07-27 ### Added diff --git a/version.php b/version.php index 829652a..8c9ba3c 100644 --- a/version.php +++ b/version.php @@ -26,9 +26,9 @@ $plugin = new stdClass(); -$plugin->version = 2021102800; +$plugin->version = 2021110800; $plugin->release = '2.11.0'; $plugin->requires = 2018120300; $plugin->supported = [36, 311]; -$plugin->maturity = MATURITY_BETA; +$plugin->maturity = MATURITY_STABLE; $plugin->component = 'tool_moodlebox';