From 733aa4ec4bbb637fae9860edff31fe93ca0042de Mon Sep 17 00:00:00 2001 From: Chris Sangwin <C.J.Sangwin@ed.ac.uk> Date: Tue, 21 Jan 2025 15:46:36 +0000 Subject: [PATCH] Update the version numbers for the v4.8.3 release. --- Readme.md | 2 +- api/config_sample.txt | 4 ++-- api/docker/docker-compose.dev.yml | 2 +- api/docker/docker-compose.yml | 4 ++-- doc/en/Developer/Development_history.md | 2 +- doc/en/Installation/STACK_versions.md | 2 +- stack/maxima/stackmaxima.mac | 2 +- version.php | 4 ++-- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Readme.md b/Readme.md index 7e54ee1ba..25d9232e9 100644 --- a/Readme.md +++ b/Readme.md @@ -1,4 +1,4 @@ -# STACK 4.8.2 +# STACK 4.8.3 STACK is an assessment system for mathematics, science and related disciplines. STACK is a question type for the Moodle learning management system, and also the ILIAS learning management system. STACK has an API for stand-alone integration into other 3rd party systems. diff --git a/api/config_sample.txt b/api/config_sample.txt index c85e4fc90..6c28c29a3 100644 --- a/api/config_sample.txt +++ b/api/config_sample.txt @@ -91,8 +91,8 @@ $CFG->inputmustverify = 1; $CFG->inputshowvalidation = 1; // These should match the version of goemaxima in docker-compose. -$CFG->stackmaximaversion = "2025122100"; -$CFG->version = "2025122100"; +$CFG->stackmaximaversion = "2025012100"; +$CFG->version = "2025012100"; // Do not change this setting. $CFG->mathsdisplay = 'api'; diff --git a/api/docker/docker-compose.dev.yml b/api/docker/docker-compose.dev.yml index 5c0e7d93d..35b580646 100644 --- a/api/docker/docker-compose.dev.yml +++ b/api/docker/docker-compose.dev.yml @@ -1,7 +1,7 @@ version: "4.0" services: maxima: - image: mathinstitut/goemaxima:2025122100-latest + image: mathinstitut/goemaxima:2025012100-latest tmpfs: - "/tmp" restart: unless-stopped diff --git a/api/docker/docker-compose.yml b/api/docker/docker-compose.yml index 0dec0ea08..0997fdb43 100644 --- a/api/docker/docker-compose.yml +++ b/api/docker/docker-compose.yml @@ -1,7 +1,7 @@ version: "4.0" services: maxima: - image: mathinstitut/goemaxima:2025122100-latest + image: mathinstitut/goemaxima:2025012100-latest tmpfs: - "/tmp" restart: unless-stopped @@ -15,7 +15,7 @@ services: read_only: true stack: # Location of published STACK API image goes here. - image: stackmaths/stackapi:2025122100-latest + image: stackmaths/stackapi:2025012100-latest restart: unless-stopped ports: - '3080:80' diff --git a/doc/en/Developer/Development_history.md b/doc/en/Developer/Development_history.md index 25ec4a327..5362dfe08 100644 --- a/doc/en/Developer/Development_history.md +++ b/doc/en/Developer/Development_history.md @@ -2,7 +2,7 @@ For current and future plans, see [Development track](Development_track.md) and [Future plans](Future_plans.md). -## Version 4.8.2 +## Version 4.8.3 Released January 2025. diff --git a/doc/en/Installation/STACK_versions.md b/doc/en/Installation/STACK_versions.md index 34a89c0b2..731527e00 100644 --- a/doc/en/Installation/STACK_versions.md +++ b/doc/en/Installation/STACK_versions.md @@ -9,7 +9,7 @@ when releasing. Release | Version number | Supported Maxima versions --------|----------------|-------------------------- -4.8.2 | 2025122100 | 5.40.0, 5.41.0, 5.42.0, 5.42.1, 5.42.2, 5.43.0, 5.43.1, 5.43.2, 5.44.0, 5.46.0, 5.47.0 +4.8.3 | 2025012100 | 5.40.0, 5.41.0, 5.42.0, 5.42.1, 5.42.2, 5.43.0, 5.43.1, 5.43.2, 5.44.0, 5.46.0, 5.47.0 4.8.0 | 2024111500 | 5.40.0, 5.41.0, 5.42.0, 5.42.1, 5.42.2, 5.43.0, 5.43.1, 5.43.2, 5.44.0, 5.46.0, 5.47.0 4.7.0 | 2024072400 | 5.40.0, 5.41.0, 5.42.0, 5.42.1, 5.42.2, 5.43.0, 5.43.1, 5.43.2, 5.44.0, 5.46.0, 5.47.0 4.6.0 | 2024060300 | 5.40.0, 5.41.0, 5.42.0, 5.42.1, 5.42.2, 5.43.0, 5.43.1, 5.43.2, 5.44.0, 5.46.0, 5.47.0 diff --git a/stack/maxima/stackmaxima.mac b/stack/maxima/stackmaxima.mac index 33a496480..4e11d3e0a 100644 --- a/stack/maxima/stackmaxima.mac +++ b/stack/maxima/stackmaxima.mac @@ -3357,4 +3357,4 @@ is_lang(code):=ev(is(%_STACK_LANG=code),simp=true)$ /* Stack expects some output with the version number the output happens at */ /* maximalocal.mac after additional library loading */ -stackmaximaversion:2025122100$ +stackmaximaversion:2025012100$ diff --git a/version.php b/version.php index 2c59254e9..26ca3068e 100644 --- a/version.php +++ b/version.php @@ -24,12 +24,12 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2025122100; +$plugin->version = 2025012100; $plugin->requires = 2022041900; $plugin->cron = 0; $plugin->component = 'qtype_stack'; $plugin->maturity = MATURITY_STABLE; -$plugin->release = '4.8.2 for Moodle 4.0+'; +$plugin->release = '4.8.3 for Moodle 4.0+'; $plugin->dependencies = [ 'qbehaviour_adaptivemultipart' => 2020103000, -- GitLab