From e9691c45454d5c7a2a10ff139d818752f211b276 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Krienb=C3=BChl?= Date: Wed, 20 Feb 2019 11:54:54 +0100 Subject: [PATCH] Release 1.1.1 --- .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 877a81a..d8ce2d6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.0 +current_version = 1.1.1 commit = True tag = True message = Release {new_version} diff --git a/HISTORY.rst b/HISTORY.rst index 3232690..6f39f74 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,9 @@ Changelog --------- +1.1.1 (2019-02-20) +~~~~~~~~~~~~~~~~~~~ + - Shows placeholder information on boolean form fields. [href] diff --git a/onegov/org/app.py b/onegov/org/app.py index a4472a0..9efdca9 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 = '1.1.0' + version = '1.1.1' 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 afc9a07..35529ea 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 = '1.1.0' + version = '1.1.1' @property def default_options(self): diff --git a/setup.py b/setup.py index 1722bda..b5cac6e 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ description = ( 'A OneGov Cloud base application for organisations.' ) -version = '1.1.0' +version = '1.1.1' def get_long_description():