From 210a648a45317d799bd1f3bc3a0afa7205c051f4 Mon Sep 17 00:00:00 2001 From: Adrian Greeve Date: Mon, 15 May 2023 10:38:57 +0800 Subject: [PATCH] Change log entry and version bump --- CHANGELOG.md | 9 +++++++++ version.php | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1974a9..1784990 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ Block Stash =========== +Version 2.0.1 (15 May 2023) +--------------------------- + +* Fixed a bug selecting items, with updating the database query to not be hardcoded. +* The user profile is now viewable again. +* A scheduled task has been added to remove old completed trade requests. +* Trade headings have been updated to better represent the actual trade. +* Added a webservice to help with future development in other plugins. + Version 2.0 (19 April 2023) --------------------------- diff --git a/version.php b/version.php index 4a40ea7..4bd8c6e 100644 --- a/version.php +++ b/version.php @@ -24,8 +24,8 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2022042115; +$plugin->version = 2023051500; $plugin->requires = 2022112802; // Moodle 4.1.2. $plugin->component = 'block_stash'; $plugin->maturity = MATURITY_STABLE; -$plugin->release = '2.0.0'; +$plugin->release = '2.0.1';