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"