diff --git a/CHANGES b/CHANGES index 8bc1a7f..62b6e96 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,16 @@ CHANGELOG ========= +0.5 (2016-10-28) +================== + +- Django 1.10 compatibility + +** Drop support ** + +- Django < 1.8 is no longer supported + + 0.4 (2016-04-10) ================== @@ -36,4 +46,4 @@ CHANGELOG 0.1 (2014-04-07) ================== -- Initial release \ No newline at end of file +- Initial release diff --git a/setup.py b/setup.py index 98cd946..a938862 100644 --- a/setup.py +++ b/setup.py @@ -5,11 +5,11 @@ setup( name='django-multi-email-field', - version='0.4', + version='0.5', author='Florent Lebreton', author_email='florent.lebreton@makina-corpus.com', url='https://github.com/fle/django-multi-email-field', - download_url="https://github.com/fle/django-multi-email-field/tarball/0.4", + download_url="https://github.com/fle/django-multi-email-field/tarball/0.5", description="Provides a model field and a form field to manage list of e-mails", long_description=open(os.path.join(here, 'README.rst')).read() + '\n\n' + open(os.path.join(here, 'CHANGES')).read(), @@ -25,13 +25,9 @@ 'Intended Audience :: Developers', 'Environment :: Web Environment', 'Framework :: Django', - 'Development Status :: 4 - Beta', - 'Programming Language :: Python :: 2.7', + 'Development Status :: 5 - Production/Stable', 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4',