Skip to content

Commit

Permalink
Released version 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LA-Toth committed Dec 2, 2022
1 parent 2970d1d commit 7e89740
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
@@ -1,3 +1,9 @@
3.1.0
- use type annotations w/o typing module, requires python 3.10+
- add mailer module (create mail from HTML/txt template and send mails)
- add convert_to_snake_case(str) to strings
- use Node.create() in git module

3.0.1
- fix for Python 3.10
- threading: ensure that job_completed() is called even if exception is thrown
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
3.0.1
3.1.0
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -16,7 +16,7 @@
description="A toolchain and framework for everyday tasks",
license="Apache License, Version 2.0",
license_files=('COPYING',),
version="3.0.1",
version="3.1.0",
author="Laszlo Attila Toth",
author_email="python-dewi@laszloattilatoth.me",
maintainer="Laszlo Attila Toth",
Expand Down Expand Up @@ -47,7 +47,7 @@
python_requires='>=3.10',
packages=find_packages(exclude=['pylintcheckers', '*test*']),
install_requires=[
'dewi_core >=5.0.2, <6',
'dewi_core >=5.4.0, <6',
'Jinja2',
]
)

0 comments on commit 7e89740

Please sign in to comment.