diff --git a/CHANGES.md b/CHANGES.md index 74be0d2c..8b11292a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,6 +5,14 @@ This is a high-level summary of the most important changes. For a full list of changes, see the [git commit log](https://github.com/grindsa/acme2certifier/commits) and pick the appropriate release branch. +## Changes in 0.19.1 + +**Features and Improvements**: + +- pep8 conformance +- time adjustments in certmanager and django workflows +- addressing code-scanning alerts from bandit and CodeQL + ## Changes in 0.19 **Bugfixes**: diff --git a/acme_srv/version.py b/acme_srv/version.py index 2e100711..785128b3 100644 --- a/acme_srv/version.py +++ b/acme_srv/version.py @@ -3,5 +3,5 @@ # 1) we don't load dependencies by storing it in __init__.py # 2) we can import it in setup.py for the same reason # 3) we can import it into your module module -__version__ = '0.19' +__version__ = '0.19.1' __dbversion__ = '0.18'