Skip to content

Commit 880e6a5

Browse files
committed
Prepare for STACK 4.11.1.
1 parent 5c18add commit 880e6a5

9 files changed

Lines changed: 21 additions & 17 deletions

File tree

api/config_sample.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ $CFG->inputmustverify = 1;
9595
$CFG->inputshowvalidation = 1;
9696

9797
// These should match the version of goemaxima in docker-compose.
98-
$CFG->stackmaximaversion = "2025102100";
99-
$CFG->version = "2025102100";
98+
$CFG->stackmaximaversion = "2026010500";
99+
$CFG->version = "2026010500";
100100

101101
// Do not change this setting.
102102
$CFG->mathsdisplay = 'api';

api/docker/docker-compose.dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "4.0"
22
services:
33
maxima:
4-
image: mathinstitut/goemaxima:2025102100-latest
4+
image: mathinstitut/goemaxima:2026010500-latest
55
tmpfs:
66
- "/tmp"
77
restart: unless-stopped

api/docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "4.0"
22
services:
33
maxima:
4-
image: mathinstitut/goemaxima:2025102100-latest
4+
image: mathinstitut/goemaxima:2026010500-latest
55
tmpfs:
66
- "/tmp"
77
restart: unless-stopped

doc/en/Developer/Development_history.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
For current and future plans, see [Development track](Development_track.md) and [Future plans](Future_plans.md).
44

5+
## Version 4.11.1
6+
7+
Released January 2026.
8+
9+
This incremental release contains some minor, but useful, bug fixes.
10+
11+
* Add in support for JSXGraph 1.12.2.
12+
* Add in support for implicit plots via Maxima's `plot2d` command, wrapped in STACK as `plot`.
13+
14+
This release contains the [HELM materials](../STACK_question_admin/Library/HELM.md) as part of the STACK question library. HELM question banks are managed using [Gitsync](https://github.com/maths/moodle-qbank_gitsync).
15+
516
## Version 4.11.0
617

718
Released October 2025.

doc/en/Developer/Development_track.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,6 @@ past development history is documented on [Development history](Development_hist
55

66
We use the [github issue tracker](https://github.com/maths/moodle-qtype_stack/issues) to track "milestones".
77

8-
## Version 4.11.1
9-
10-
This incremental release contains some minor, but useful, bug fixes.
11-
12-
* Add in support for JSXGraph 1.12.2.
13-
* Add in support for implicit plots via Maxima's `plot2d` command, wrapped in STACK as `plot`.
14-
15-
This release contains the [HELM materials](../STACK_question_admin/Library/HELM.md) as part of the STACK question library. HELM question banks are managed using [Gitsync](https://github.com/maths/moodle-qbank_gitsync).
16-
178
## Version 4.12.0
189

1910
Issues with [github milestone 4.12.0](https://github.com/maths/moodle-qtype_stack/issues?q=is%3Aissue+milestone%3A4.12.0) include

doc/en/Developer/Releasing.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# STACK release process notes
1+
# Releasing new STACK versions
22

33
Note, these notes are designed for developers releasing a new version through the Moodle plugin database. They are probably not useful for anyone else.
44

@@ -39,6 +39,7 @@ Unless you want to discuss something confidential with the developers, please do
3939
* Run PHP [unit tests](Unit_tests.md).
4040
* Run code checker.
4141
* If needed re-build the minified Javascript (e.g. `npx grunt --root=question/type/stack`).
42+
* Check version of JSXGraph.
4243

4344
### Check API
4445

doc/en/Installation/STACK_versions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ when releasing.
99

1010
Release | Version number | Supported Maxima versions
1111
--------|----------------|--------------------------
12+
4.11.1 | 2026010500 | 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
1213
4.11.0 | 2025102100 | 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
1314
4.10.0 | 2025073100 | 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
1415
4.9.1 | 2025040200 | 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

stack/maxima/stackmaxima.mac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3544,4 +3544,4 @@ is_lang(code):=ev(is(%_STACK_LANG=code),simp=true)$
35443544

35453545
/* Stack expects some output with the version number the output happens at */
35463546
/* maximalocal.mac after additional library loading */
3547-
stackmaximaversion:2025102200$
3547+
stackmaximaversion:2026010500$

version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424

2525
defined('MOODLE_INTERNAL') || die();
2626

27-
$plugin->version = 2025102200;
27+
$plugin->version = 2026010500;
2828
$plugin->requires = 2022041900;
2929
$plugin->cron = 0;
3030
$plugin->component = 'qtype_stack';
31-
$plugin->maturity = MATURITY_ALPHA;
31+
$plugin->maturity = MATURITY_STABLE;
3232
$plugin->release = '4.11.1 for Moodle 4.1+';
3333

3434
$plugin->dependencies = [

0 commit comments

Comments
 (0)