From bccd225c390eda293cc03055bd6b2b3ac876b843 Mon Sep 17 00:00:00 2001 From: Sara Arjona Date: Mon, 22 May 2023 16:35:41 +0200 Subject: [PATCH] MDL-75963 tiny: Bump version to expected number There was as an error with the previous version number: "Version (2023031400) cannot be before 20230424 (YYYYMMDD)". --- filter/codehighlighter/version.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/filter/codehighlighter/version.php b/filter/codehighlighter/version.php index 09b09dcb045..8108541b7e4 100644 --- a/filter/codehighlighter/version.php +++ b/filter/codehighlighter/version.php @@ -24,6 +24,6 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2023031400; // The current plugin version (Date: YYYYMMDDXX). -$plugin->requires = 2023031000; // Requires this Moodle version. +$plugin->version = 2023052200; // The current plugin version (Date: YYYYMMDDXX). +$plugin->requires = 2023041800; // Requires this Moodle version. $plugin->component = 'filter_codehighlighter'; // Full name of the plugin (used for diagnostics).