From 6ae771a9c69e7cfab3d085e10bb3f3d7ed5504ef Mon Sep 17 00:00:00 2001 From: Martin Zuther Date: Thu, 26 Dec 2024 15:19:06 +0100 Subject: [PATCH] v1.0.4: update Jinja2 (security vulnerability) - include files by matching glob, not only suffix - factor out `DirWalk` into separate module and rename to `Hercules` - add library to check licenses of dependencies - fix: pass test script when no slow tests found - fix: license is not recognized in poetry --- CHANGELOG.md | 16 ++++++++++++++++ pyproject.toml | 2 +- stempelwerk/StempelWerk.py | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb0be1c..a511a08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,22 @@ happens._ +## [1.0.4] - 2024-12-26 + +### Security +- update Jinja2 dependency to fix security vulnerability + +### Changed +- include files by matching glob, not only suffix +- factor out `DirWalk` into separate module and rename to `Hercules` +- add library to check licenses of dependencies + +### Fixed +- fix: pass test script when no slow tests found +- fix: license is not recognized in poetry + + + ## [1.0.3] - 2024-07-17 ### Security diff --git a/pyproject.toml b/pyproject.toml index cabcad0..ecd086a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "StempelWerk" -version = "1.0.3" +version = "1.0.4" description = "Automatic code generation from Jinja2 templates" authors = ["Martin Zuther "] license = "BSD-3-Clause" diff --git a/stempelwerk/StempelWerk.py b/stempelwerk/StempelWerk.py index 1f8c9de..6e071c5 100755 --- a/stempelwerk/StempelWerk.py +++ b/stempelwerk/StempelWerk.py @@ -58,7 +58,7 @@ class StempelWerk: APPLICATION = 'StempelWerk' - VERSION = '1.0.3' + VERSION = '1.0.4' AUTHOR = 'Martin Zuther' DESCRIPTION = 'Automatic code generation from Jinja2 templates.' LICENSE = 'BSD 3-Clause License'