From 61d5fd9bc9eb6721d10670234a2fe519f42dffb8 Mon Sep 17 00:00:00 2001 From: Nicolas Martignoni Date: Thu, 5 Oct 2023 17:32:49 +0200 Subject: [PATCH] Fix version number and update release notes - Fixes #125. --- CHANGELOG.md | 5 +++++ version.php | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fad611d..38e3bd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ 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.1, 2023-10-05 + +### Fixed +- Fix bad branch name in supported version (issue #125). + ## Version 2.17.0, 2023-10-01 ### Add diff --git a/version.php b/version.php index 26eefab..783d049 100644 --- a/version.php +++ b/version.php @@ -26,9 +26,9 @@ $plugin = new stdClass(); -$plugin->version = 2023100101; -$plugin->release = '2.17.0'; +$plugin->version = 2023100500; +$plugin->release = '2.17.1'; $plugin->requires = 2018120300; -$plugin->supported = [36, 430]; +$plugin->supported = [36, 403]; $plugin->maturity = MATURITY_STABLE; $plugin->component = 'tool_moodlebox';