diff --git a/docs/conf.py b/docs/conf.py index 38c983e..965ca75 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,10 +55,10 @@ author = 'Lab Digital BV' # built documents. # # The short X.Y version. -version = '0.9.0' +version = '0.9.1' # The full version, including alpha/beta/rc tags. -release = '0.9.0' +release = '0.9.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 31ffce3..8bb9e92 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +1,9 @@ +[bumpversion] +current_version = 0.9.1 +commit = true +tag = true +tag_name = {new_version} + [tool:pytest] DJANGO_SETTINGS_MODULE = tests.settings minversion = 3.0 @@ -7,25 +13,19 @@ testpaths = tests python_paths = . [flake8] -ignore=E731 +ignore = E731 max-line-length = 120 -exclude= - src/**/migrations/*.py +exclude = + src/**/migrations/*.py [wheel] universal = 1 [coverage:run] -omit = - src/**/migrations/*.py - - -[bumpversion] -current_version = 0.9.0 -commit = true -tag = true -tag_name = {new_version} +omit = + src/**/migrations/*.py [bumpversion:file:setup.py] [bumpversion:file:docs/conf.py] + diff --git a/setup.py b/setup.py index 511d780..52d12f7 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ with open('README.rst') as fh: setup( name='wagtail-personalisation', - version='0.9.0', + version='0.9.1', description='A Wagtail add-on for showing personalized content', author='Lab Digital BV', author_email='opensource@labdigital.nl',