diff --git a/CHANGES.md b/CHANGES.md index 5f5fe76..350cf31 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Changelog +### 1.0.1 (2024-08-07) + +- bugfix: avoid corruption of ZIP file in case of errors +- improvement: in case of an error, include detailed message in ZIP file + ### 1.0.1 (2024-04-26) - bugfix: download button was not working properly diff --git a/version.php b/version.php index 3cae7e8..4dc6864 100644 --- a/version.php +++ b/version.php @@ -25,9 +25,9 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2024042600; +$plugin->version = 20240807; $plugin->requires = 2022112800; $plugin->component = 'quiz_essaydownload'; $plugin->maturity = MATURITY_STABLE; -$plugin->release = '1.0.1'; +$plugin->release = '1.0.2';