From e535d55a390d8116994f4fa83991daa33a2c4941 Mon Sep 17 00:00:00 2001 From: Marc Sommerhalder Date: Tue, 5 Feb 2019 11:04:32 +0100 Subject: [PATCH] Release 1.0.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 201a492..10b0dd7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.1 +current_version = 1.0.2 commit = True tag = True message = Release {new_version} diff --git a/HISTORY.rst b/HISTORY.rst index d27eda8..99d0396 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,9 @@ Changelog --------- +1.0.2 (2019-02-05) +~~~~~~~~~~~~~~~~~~~ + - Adds a pre-title slot. [msom] diff --git a/onegov/org/app.py b/onegov/org/app.py index 413d09d..53bd20b 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.0.1' + version = '1.0.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 4d71a35..9072344 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.0.1' + version = '1.0.2' @property def default_options(self): diff --git a/setup.py b/setup.py index ab11bf8..04deb51 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ description = ( 'A OneGov Cloud base application for organisations.' ) -version = '1.0.1' +version = '1.0.2' def get_long_description():