diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f8f0e0f..d51d449 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.35.1 +current_version = 0.35.2 commit = True tag = True message = Release {new_version} diff --git a/HISTORY.rst b/HISTORY.rst index 4a11aa3..34beca6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,9 @@ Changelog --------- +0.35.2 (2018-09-21) +~~~~~~~~~~~~~~~~~~~ + - Moves keyword converters to their own file. [href] diff --git a/onegov/org/app.py b/onegov/org/app.py index d5d0360..2307ce6 100644 --- a/onegov/org/app.py +++ b/onegov/org/app.py @@ -38,7 +38,7 @@ class OrgApp(Framework, LibresIntegration, ElasticsearchApp, MapboxApp, directory_search_widget = directive(directives.DirectorySearchWidgetAction) #: the version of this application (do not change manually!) - version = '0.35.1' + version = '0.35.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 56860cf..6fda5e2 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.35.1' + version = '0.35.2' @property def default_options(self): diff --git a/setup.py b/setup.py index 48e2d81..26888b4 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ description = ( 'A OneGov Cloud base application for organisations.' ) -version = '0.35.1' +version = '0.35.2' def get_long_description():