diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4c570bf..741a2c2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.15.9 +current_version = 1.15.10 commit = True tag = True message = Release {new_version} diff --git a/HISTORY.rst b/HISTORY.rst index 7df5cb8..fe54e96 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,5 +1,7 @@ Changelog --------- +1.15.10 (2019-07-26) +~~~~~~~~~~~~~~~~~~~~~ - Fixes failure when saving homepage settings. [href] diff --git a/onegov/town/app.py b/onegov/town/app.py index 2916842..181ca20 100644 --- a/onegov/town/app.py +++ b/onegov/town/app.py @@ -17,7 +17,7 @@ class TownApp(OrgApp): #: the version of this application (do not change manually!) - version = '1.15.9' + version = '1.15.10' def configure_organisation(self, **cfg): cfg.setdefault('enable_user_registration', False) diff --git a/onegov/town/theme/town_theme.py b/onegov/town/theme/town_theme.py index a894f56..dd61046 100644 --- a/onegov/town/theme/town_theme.py +++ b/onegov/town/theme/town_theme.py @@ -13,7 +13,7 @@ class TownTheme(OrgTheme): # don't touch this number, it's incremented using bumpversion, so every # release will automatically trigger a rebuild of the theme - version = '1.15.9' + version = '1.15.10' @property def post_imports(self): diff --git a/setup.py b/setup.py index 7e84eec..6ba450c 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ description = ( 'OneGov web application for small towns.' ) -version = '1.15.9' +version = '1.15.10' def get_long_description():