7

Bump version to 1.0.0

This commit is contained in:
Kaitlyn Crawford
2018-12-18 14:03:01 +02:00
parent dcdeb4e9a2
commit 83cc7f790e
4 changed files with 11 additions and 7 deletions

View File

@ -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 0.11.3
================== ==================
- Bugfix: Handle errors when testing an invalid visit count rule - Bugfix: Handle errors when testing an invalid visit count rule

View File

@ -55,10 +55,10 @@ author = 'Lab Digital BV'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.11.3' version = '1.0.0'
# The full version, including alpha/beta/rc tags. # 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 # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 0.11.3 current_version = 1.0.0
commit = true commit = true
tag = true tag = true
tag_name = {new_version} tag_name = {new_version}

View File

@ -32,7 +32,7 @@ with open('README.rst') as fh:
setup( setup(
name='wagtail-personalisation-molo', name='wagtail-personalisation-molo',
version='0.11.3', version='1.0.0',
description='A forked version of Wagtail add-on for showing personalized content', description='A forked version of Wagtail add-on for showing personalized content',
author='Praekelt.org', author='Praekelt.org',
author_email='dev@praekeltfoundation.org', author_email='dev@praekeltfoundation.org',
@ -49,13 +49,11 @@ setup(
license='MIT', license='MIT',
long_description=long_description, long_description=long_description,
classifiers=[ classifiers=[
'Development Status :: 2 - Pre-Alpha', 'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment', 'Environment :: Web Environment',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', 'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',