Skip to content

Commit

Permalink
v1.0.2: update dependencies (security vulnerability)
Browse files Browse the repository at this point in the history
- update Jinja2 dependency (again) to fix security vulnerability

- 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

- fix: no files are included in case no suffixes are specified
- fix: excluded file names cannot use globs
- fix: poetry cannot find root folder
  • Loading branch information
mzuther committed May 7, 2024
1 parent 7d96794 commit d0683d8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.1"
version = "1.0.2"
description = "Automatic code generation from Jinja2 templates"
authors = ["Martin Zuther <code@mzuther.de>"]
license = "BSD 3-Clause License"
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.1'
VERSION = '1.0.2'
AUTHOR = 'Martin Zuther'
DESCRIPTION = 'Automatic code generation from Jinja2 templates.'
LICENSE = 'BSD 3-Clause License'
Expand Down

0 comments on commit d0683d8

Please sign in to comment.