diff --git a/doc/changelog.rst b/doc/changelog.rst index 09de4d03d..2a4c2663c 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,13 @@ Changelog ========= +1.6.0 +----- + +* Dropped Python 2 support +* WTForms 3.0 support +* Various fixes + 1.5.8 ----- diff --git a/flask_admin/__init__.py b/flask_admin/__init__.py index 710b39ecb..a3147b708 100644 --- a/flask_admin/__init__.py +++ b/flask_admin/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.5.8' +__version__ = '1.6.0' __author__ = 'Flask-Admin team' __email__ = 'serge.koval+github@gmail.com' diff --git a/setup.py b/setup.py index 855751e3a..5f4d40f96 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,7 @@ def grep(attrname): version=grep('__version__'), url='https://github.com/flask-admin/flask-admin/', license='BSD', + python_requires='>=3.6', author=grep('__author__'), author_email=grep('__email__'), description='Simple and extensible admin interface framework for Flask',