diff --git a/CHANGES b/CHANGES index a5f1c2b..859bea8 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +1.0.0 +================== + - Upgrade to Python 3.6, drop support for Python 2.7 + - Upgrade to Wagtail 2.0, drop support for Wagtail < 2 + - These are breaking changes for dependant projects that explicitly import Wagtail modules + 0.11.3 ================== - Bugfix: Handle errors when testing an invalid visit count rule diff --git a/docs/conf.py b/docs/conf.py index 1a7483a..a8ffa49 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.11.3' +version = '1.0.0' # The full version, including alpha/beta/rc tags. -release = '0.11.3' +release = '1.0.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/implementation.rst b/docs/implementation.rst index 93b3208..7ddd568 100644 --- a/docs/implementation.rst +++ b/docs/implementation.rst @@ -37,7 +37,7 @@ Rules consist of two important elements, the model's fields and the ``test_user` A very simple example of a rule would look something like this:: from django.db import models - from wagtail.wagtailadmin.edit_handlers import FieldPanel + from wagtail.admin.edit_handlers import FieldPanel from personalisation import AbstractBaseRule class MyNewRule(AbstractBaseRule): diff --git a/setup.cfg b/setup.cfg index 5faf6ce..c363f93 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.3 +current_version = 1.0.0 commit = true tag = true tag_name = {new_version} diff --git a/setup.py b/setup.py index 6411fd3..8cba5b9 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ with open('README.rst') as fh: setup( name='wagtail-personalisation-molo', - version='0.11.3', + version='1.0.0', description='A forked version of Wagtail add-on for showing personalized content', author='Praekelt.org', author_email='dev@praekeltfoundation.org', @@ -49,13 +49,11 @@ setup( license='MIT', long_description=long_description, classifiers=[ - 'Development Status :: 2 - Pre-Alpha', + 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5',