diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0385b82..ceb3b9d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.49.0 +current_version = 0.49.1 commit = True tag = True message = Release {new_version} diff --git a/HISTORY.rst b/HISTORY.rst index 4f1dcb3..81bd9d1 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,9 @@ Changelog --------- +0.49.1 (2019-01-18) +~~~~~~~~~~~~~~~~~~~ + - Fixes invalid allocation error for certain rules. [href] diff --git a/onegov/org/app.py b/onegov/org/app.py index 2252a50..6c6a196 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.49.0' + version = '0.49.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 13d189a..bc10b54 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.49.0' + version = '0.49.1' @property def default_options(self): diff --git a/setup.py b/setup.py index 2febfa6..b372219 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ description = ( 'A OneGov Cloud base application for organisations.' ) -version = '0.49.0' +version = '0.49.1' def get_long_description():