Bump to 1.0
parent
741f7fdf5f
commit
2d6832f844
|
|
@ -1,8 +1,8 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
Version 1.0b1 (2016-08-10)
|
||||
--------------------------
|
||||
Version 1.0 (2016-09-02)
|
||||
------------------------
|
||||
|
||||
* Added Django 1.10 support.
|
||||
* 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.
|
||||
|
||||
|
||||
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)
|
||||
--------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ copyright = u'2013, Bert Constantin, Chris Glass, Diederik van der Boor'
|
|||
# The short X.Y version.
|
||||
version = '1.0'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '1.0b1'
|
||||
release = '1.0'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
"""
|
||||
# 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.
|
||||
|
|
|
|||
Loading…
Reference in New Issue