From cde99baa454555585370e2606137a62243d107f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Krienb=C3=BChl?= Date: Thu, 10 Jan 2019 09:27:19 +0100 Subject: [PATCH] Release 0.48.2 --- .bumpversion.cfg | 2 +- HISTORY.rst | 3 +++ onegov/org/app.py | 2 +- onegov/org/theme/org_theme.py | 2 +- setup.py | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8b6a37a..922cd94 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.48.1 +current_version = 0.48.2 commit = True tag = True message = Release {new_version} diff --git a/HISTORY.rst b/HISTORY.rst index e497b8d..92a95ba 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,9 @@ Changelog --------- +0.48.2 (2019-01-10) +~~~~~~~~~~~~~~~~~~~ + - Fixes publication extension shown in newsletter form. [href] diff --git a/onegov/org/app.py b/onegov/org/app.py index f943576..30ca1f5 100644 --- a/onegov/org/app.py +++ b/onegov/org/app.py @@ -39,7 +39,7 @@ class OrgApp(Framework, LibresIntegration, ElasticsearchApp, MapboxApp, settings_view = directive(directives.SettingsView) #: the version of this application (do not change manually!) - version = '0.48.1' + version = '0.48.2' def is_allowed_application_id(self, application_id): """ Stops onegov.server from ever passing the request to the org diff --git a/onegov/org/theme/org_theme.py b/onegov/org/theme/org_theme.py index 1dcb37f..8449e6a 100644 --- a/onegov/org/theme/org_theme.py +++ b/onegov/org/theme/org_theme.py @@ -16,7 +16,7 @@ class OrgTheme(BaseTheme): # don't touch this number, it's incremented using bumpversion, so every # release will automatically trigger a rebuild of the theme - version = '0.48.1' + version = '0.48.2' @property def default_options(self): diff --git a/setup.py b/setup.py index 6b9b65b..65f60b3 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ description = ( 'A OneGov Cloud base application for organisations.' ) -version = '0.48.1' +version = '0.48.2' def get_long_description():