6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-12-04 19:03:39 +00:00
This commit is contained in:
Régis Behmo 2023-10-02 11:15:51 +02:00
parent d6e26c614c
commit 2bdd170601
6 changed files with 9 additions and 5 deletions

View File

@ -20,6 +20,14 @@ instructions, because git commits are used to generate release notes:
<!-- scriv-insert-here -->
<a id='changelog-16.1.2'></a>
## v16.1.2 (2023-10-02)
- [Bugfix] Render config settings that are inside lists. (by @regisb)
- [Bugfix] Correctly parse strings prefixed with pound "#" key in `tutor config save --set KEY=#value` commands. (by @regisb)
- [Feature] New action introduced: `CONFIG_LOADED`. This action is called whenever the config is loaded and makes it possible to verify the validity of configuration settings at runtime. (by @CodeWithEmad)
- [Bugfix] Fix file upload in open response assessments. (by @regisb)
<a id='changelog-16.1.1'></a>
## v16.1.1 (2023-08-29)

View File

@ -1 +0,0 @@
- [Bugfix] Render config settings that are inside lists. (by @regisb)

View File

@ -1 +0,0 @@
- [Bugfix] Correctly parse strings prefixed with pound "#" key in `tutor config save --set KEY=#value` commands. (by @regisb)

View File

@ -1 +0,0 @@
- 💥[Feature] New action introduced: CONFIG_LOADED. This actions is called whenever the config is loaded. (by @CodeWithEmad)

View File

@ -1 +0,0 @@
- [Bugfix] Fix file upload in open response assessments. (by @regisb)

View File

@ -2,7 +2,7 @@ import os
# Increment this version number to trigger a new release. See
# docs/tutor.html#versioning for information on the versioning scheme.
__version__ = "16.1.1"
__version__ = "16.1.2"
# The version suffix will be appended to the actual version, separated by a
# dash. Use this suffix to differentiate between the actual released version and