diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6b92f56..79b5cdd 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.0 +current_version = 1.4.1 commit = True tag = True message = Release {new_version} diff --git a/HISTORY.rst b/HISTORY.rst index 2969130..9030d15 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,9 @@ Changelog --------- +1.4.1 (2019-06-19) +~~~~~~~~~~~~~~~~~~~ + - Adds the ability to redirect the hompeage to custom paths. [href] diff --git a/onegov/org/app.py b/onegov/org/app.py index 09590aa..d64c1a5 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.4.0' + version = '1.4.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 cc56833..4f21ddb 100644 --- a/onegov/org/theme/org_theme.py +++ b/onegov/org/theme/org_theme.py @@ -15,7 +15,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.4.0' + version = '1.4.1' @property def default_options(self): diff --git a/setup.py b/setup.py index 80ad41b..103c243 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ description = ( 'A OneGov Cloud base application for organisations.' ) -version = '1.4.0' +version = '1.4.1' def get_long_description():