From cd5215d25f0f62d8cd10e1511568e411c9e96ed6 Mon Sep 17 00:00:00 2001 From: Daniel Thies Date: Thu, 8 Aug 2024 11:31:59 -0500 Subject: [PATCH] Release 1.8.2 --- .github/workflows/moodle-ci.yml | 2 +- classes/plugininfo/videotimeplugin.php | 9 ++++----- version.php | 6 +++--- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/moodle-ci.yml b/.github/workflows/moodle-ci.yml index b49c1d57..cc0d74c0 100644 --- a/.github/workflows/moodle-ci.yml +++ b/.github/workflows/moodle-ci.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 services: postgres: diff --git a/classes/plugininfo/videotimeplugin.php b/classes/plugininfo/videotimeplugin.php index 0ed2f7d1..ed0d2582 100644 --- a/classes/plugininfo/videotimeplugin.php +++ b/classes/plugininfo/videotimeplugin.php @@ -52,16 +52,15 @@ public function available_updates() { case 'pro': $info = [ 'maturity' => MATURITY_STABLE, - 'release' => '1.8', - 'release' => '1.8.1', - 'version' => 2024050601, + 'release' => '1.8.2', + 'version' => 2024050603, ]; break; case 'repository': $info = [ 'maturity' => MATURITY_STABLE, - 'release' => '1.8', - 'version' => 2024050600, + 'release' => '1.8.2', + 'version' => 2024050602, ]; break; } diff --git a/version.php b/version.php index c92cceae..36eda63e 100644 --- a/version.php +++ b/version.php @@ -25,7 +25,7 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'mod_videotime'; -$plugin->release = '1.8.1'; -$plugin->version = 2024050602; -$plugin->requires = 2015111610; +$plugin->release = '1.8.2'; +$plugin->version = 2024050603; +$plugin->requires = 2023042400; $plugin->maturity = MATURITY_STABLE;