diff --git a/CHANGELOG.md b/CHANGELOG.md index b8015ec..254e92e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,25 @@ happens._ +## [1.0.2] - 2024-05-07 + +### Security +- update Jinja2 dependency (again) to fix security vulnerability + +### Changed +- rename some `DirWalk` parameters +- add unit tests for `DirWalk` class +- run slow tests when all other tests have passed +- refactor code +- change directory layout of source code + +### Fixed +- fix: no files are included in case no suffixes are specified +- fix: excluded file names cannot use globs +- fix: poetry cannot find root folder + + + ## [1.0.1] - 2024-01-12 ### Security diff --git a/pyproject.toml b/pyproject.toml index 97b2111..4e32322 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "StempelWerk" -version = "1.0.1" +version = "1.0.2" description = "Automatic code generation from Jinja2 templates" authors = ["Martin Zuther "] license = "BSD 3-Clause License" diff --git a/stempelwerk/StempelWerk.py b/stempelwerk/StempelWerk.py index 50e7af1..910b569 100755 --- a/stempelwerk/StempelWerk.py +++ b/stempelwerk/StempelWerk.py @@ -58,7 +58,7 @@ class StempelWerk: APPLICATION = 'StempelWerk' - VERSION = '1.0.1' + VERSION = '1.0.2' AUTHOR = 'Martin Zuther' DESCRIPTION = 'Automatic code generation from Jinja2 templates.' LICENSE = 'BSD 3-Clause License'