From 4d84c9fb34b16c70849c4f3a03318ab3a6067ecb Mon Sep 17 00:00:00 2001 From: grindsa Date: Tue, 20 Feb 2024 06:14:27 +0100 Subject: [PATCH] [rel] bump to 0.33.2 --- CHANGES.md | 13 +++++++++++++ acme_srv/version.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 131b5714..ff3f7e43 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,6 +7,19 @@ and pick the appropriate release branch. # Changes in 0.33.1 +**Upgrade notes**: + +- database scheme gets updated. Please run either + - `tools/db_update.py` when using the wsgi_handler or + - `tools/django_update.py` in case you are using the django_handler + +**Bugfixes**: + +- [134](https://github.com/grindsa/acme2certifier/issues/134) - acme_srv_housekeeping" -> value too long for "name" field +- [135](https://github.com/grindsa/acme2certifier/issues/134) - acme_srv_housekeeping dbversion ist set back to 0.23.1 after container restart + +# Changes in 0.33.1 + **Bugfixes**: - [132](https://github.com/grindsa/acme2certifier/issues/132) - returning serial numbers in hex-format with leading zero diff --git a/acme_srv/version.py b/acme_srv/version.py index 9ac4632b..163eeff4 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.33.1' +__version__ = '0.33.2' __dbversion__ = '0.33.2'