diff --git a/CHANGELOG.md b/CHANGELOG.md index f4e78a517d..1e1a3ce701 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ UNRELEASED ---------- + +2022.8.3 +-------- + * [ [#1635](https://github.com/digitalfabrik/integreat-cms/issues/1635) ] Show Matomo actions in statistics instead of visitors * [ [#1449](https://github.com/digitalfabrik/integreat-cms/issues/1449) ] Show diff to last source version in side-by-side view * [ [#1656](https://github.com/digitalfabrik/integreat-cms/issues/1656) ] Only validate event duration if dates are valid diff --git a/integreat_cms/__init__.py b/integreat_cms/__init__.py index 42c56c564b..704c8bf47b 100644 --- a/integreat_cms/__init__.py +++ b/integreat_cms/__init__.py @@ -1 +1 @@ -__version__ = "2022.8.2" +__version__ = "2022.8.3" diff --git a/setup.cfg b/setup.cfg index 3cca8ccfae..471c0a12d4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = integreat-cms -version = 2022.8.2 +version = 2022.8.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.8.2 +current_version = 2022.8.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 7d4350e62c..81014b715f 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.8.2" +release = "2022.8.3" # -- General configuration ---------------------------------------------------