diff --git a/CHANGELOG.md b/CHANGELOG.md index bec1eedb94..88297c58cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ UNRELEASED ---------- + +2022.5.3 +-------- + * [ [#1460](https://github.com/digitalfabrik/integreat-cms/issues/1460) ] Only show status in broken link checker for expert users * [ [#742](https://github.com/digitalfabrik/integreat-cms/issues/742) ] Add default bounding box to region API * [ [#1406](https://github.com/digitalfabrik/integreat-cms/issues/1406) ] Hide sub-headings in PDF table of contents diff --git a/integreat_cms/__init__.py b/integreat_cms/__init__.py index 8dc808fb8f..a7c261aaca 100644 --- a/integreat_cms/__init__.py +++ b/integreat_cms/__init__.py @@ -1 +1 @@ -__version__ = "2022.5.2" +__version__ = "2022.5.3" diff --git a/setup.cfg b/setup.cfg index 9d70bc94ae..86ba1dbbfb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = integreat-cms -version = 2022.5.2 +version = 2022.5.3 author = Tür an Tür – Digitalfabrik gGmbH author_email = tech@integreat-app.de description = Content Management System for the Integreat App @@ -74,7 +74,7 @@ include_package_data = True scripts = integreat_cms/integreat-cms-cli [bumpver] -current_version = 2022.5.2 +current_version = 2022.5.3 version_pattern = YYYY.MM.INC0[-TAG] commit_message = Bump version to {new_version} diff --git a/sphinx/conf.py b/sphinx/conf.py index 7468d1362f..1054aabe19 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.5.2" +release = "2022.5.3" # -- General configuration ---------------------------------------------------