From def3a73f94b3b87f3f2823170a3e141104d9d9e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Gandra=C3=9F?= Date: Thu, 18 Jul 2024 15:38:33 +0200 Subject: [PATCH] Release version 1.5.0 --- CHANGELOG.md | 2 +- config.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e970407..9c2009e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Version 1.5.0 (XXXX-XX-XX) +## Version 1.5.0 (2024-07-18) - Optionally scale down large images within quiz reports to preserve space and keep PDF files compact - Optionally compress images within quiz reports to preserve space and keep PDF files compact diff --git a/config.py b/config.py index c21f977..4479172 100644 --- a/config.py +++ b/config.py @@ -23,7 +23,7 @@ class Config: APP_NAME = "moodle-quiz-archive-worker" """Name of this app.""" - VERSION = "1.4.0" + VERSION = "1.5.0" """Version of this app.""" LOG_LEVEL = logging.getLevelNamesMapping()[os.getenv('QUIZ_ARCHIVER_LOG_LEVEL', default='INFO')] diff --git a/pyproject.toml b/pyproject.toml index d2c4afe..e0d1247 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "moodle-quiz-archive-worker" -version = "1.4.0" +version = "1.5.0" description = "Quiz archiver service to work in conjunction with the Moodle plugin 'quiz_archiver'" authors = ["Niels Gandraß "] readme = "README.md"