Release note for Django 1.11 compatibility - fixes #3314

pull/3415/head
Matt Westcott 2017-04-07 16:52:31 +01:00
rodzic c2638fc3ad
commit fb82650943
3 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -4,6 +4,7 @@ Changelog
1.10 (xx.xx.xxxx) - IN DEVELOPMENT
~~~~~~~~~~~~~~~~~
* Django 1.11 support (Tim Graham, Matt Westcott, Mikalai Radchuk, Bertrand Bordage)
* Dropped Django 1.9 and Python 3.3 support; note that Django 1.8.x is still supported
* Dropped support for generating static sites using django-medusa
* Use minified versions of jQuery and jQuery UI in the admin. Total savings without compression 371 KB (Tom Dyson)

Wyświetl plik

@ -10,6 +10,11 @@ Wagtail 1.10 release notes - IN DEVELOPMENT
What's new
==========
Django 1.11 and Python 3.6 support
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Wagtail is now compatible with Django 1.11 and Python 3.6. Compatibility fixes were contributed by Tim Graham, Matt Westcott, Mikalai Radchuk and Bertrand Bordage.
Other features
~~~~~~~~~~~~~~

Wyświetl plik

@ -85,9 +85,11 @@ setup(
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
install_requires=install_requires,