Bump to 1.0

fix_request_path_info
Diederik van der Boor 2016-09-02 12:28:08 +02:00
parent 741f7fdf5f
commit 2d6832f844
3 changed files with 12 additions and 4 deletions

View File

@ -1,8 +1,8 @@
Changelog Changelog
========= =========
Version 1.0b1 (2016-08-10) Version 1.0 (2016-09-02)
-------------------------- ------------------------
* Added Django 1.10 support. * Added Django 1.10 support.
* Added **admin inline** support for polymorphic models. * Added **admin inline** support for polymorphic models.
@ -23,6 +23,14 @@ Version 1.0b1 (2016-08-10)
Also note that proxy models will now limit the queryset too. Also note that proxy models will now limit the queryset too.
Fixed since 1.0b1 (2016-08-10)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Fix formset empty-form display when there are form errors.
* Fix formset empty-form hiding for Grappelli_.
* Fixed packing ``admin/polymorphic/edit_inline/stacked.html`` in the wheel format.
Version 0.9.2 (2016-05-04) Version 0.9.2 (2016-05-04)
-------------------------- --------------------------

View File

@ -57,7 +57,7 @@ copyright = u'2013, Bert Constantin, Chris Glass, Diederik van der Boor'
# The short X.Y version. # The short X.Y version.
version = '1.0' version = '1.0'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '1.0b1' release = '1.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

@ -7,7 +7,7 @@ This code and affiliated files are (C) by Bert Constantin and individual contrib
Please see LICENSE and AUTHORS for more information. Please see LICENSE and AUTHORS for more information.
""" """
# See PEP 440 (https://www.python.org/dev/peps/pep-0440/) # See PEP 440 (https://www.python.org/dev/peps/pep-0440/)
__version__ = "1.0b1" __version__ = "1.0"
# Monkey-patch Django < 1.5 to allow ContentTypes for proxy models. # Monkey-patch Django < 1.5 to allow ContentTypes for proxy models.