Skip to content

Commit

Permalink
v1.0.4: update Jinja2 (security vulnerability)
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
mzuther committed Dec 26, 2024
1 parent ba904f6 commit 6ae771a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <code@mzuther.de>"]
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion stempelwerk/StempelWerk.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 6ae771a

Please sign in to comment.