diff --git a/CHANGES.md b/CHANGES.md index 1869e60f..f384d375 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,6 +5,18 @@ 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.29.2 + +**Bugfixes**: + +- #119 - handling of utf-8 encoded parameters in `acme_srv.cfg` +- adding `python3-requests-ntlm` dependency in control file for debian packages +- multiple smaller fixes in workflow files + +# Changes to 0.29.1 + +- withdrawn as released by mistake + # Changes in 0.29 **Upgrade notes**: diff --git a/acme_srv/version.py b/acme_srv/version.py index aff9a338..9a49dd6c 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.29' +__version__ = '0.29.2' __dbversion__ = '0.29.2'