diff --git a/CHANGELOG.md b/CHANGELOG.md index f4ddf32a20..95abdeacd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ UNRELEASED ---------- + +2022.4.2 +-------- + * [ [#1366](https://github.com/digitalfabrik/integreat-cms/issues/1366) ] Fix monthly recurring events on mondays * [ [#1365](https://github.com/digitalfabrik/integreat-cms/issues/1365) ] Add timezone setting to region model * [ [#1093](https://github.com/digitalfabrik/integreat-cms/issues/1093) ] Add Malte and Aschaffenburg brandings diff --git a/integreat_cms/__init__.py b/integreat_cms/__init__.py index 449729a0a1..170483c1df 100644 --- a/integreat_cms/__init__.py +++ b/integreat_cms/__init__.py @@ -1 +1 @@ -__version__ = "2022.4.1" +__version__ = "2022.4.2" diff --git a/setup.cfg b/setup.cfg index bfa499f64a..a88c589d07 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = integreat-cms -version = 2022.4.1 +version = 2022.4.2 author = Tür an Tür – Digitalfabrik gGmbH author_email = tech@integreat-app.de description = Content Management System for the Integreat App @@ -73,7 +73,7 @@ include_package_data = True scripts = integreat_cms/integreat-cms-cli [bumpver] -current_version = 2022.4.1 +current_version = 2022.4.2 version_pattern = YYYY.MM.INC0[-TAG] commit_message = Bump version to {new_version} diff --git a/sphinx/conf.py b/sphinx/conf.py index b75162b703..930e0c28a7 100644 --- a/sphinx/conf.py +++ b/sphinx/conf.py @@ -49,7 +49,7 @@ django_github_url = f"https://github.com/django/django/blob/stable/{django_version}.x" #: The full version, including alpha/beta/rc tags -release = "2022.4.1" +release = "2022.4.2" # -- General configuration ---------------------------------------------------