diff --git a/docs/changelog.rst b/docs/changelog.rst index cb374b3..9d74887 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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) -------------------------- diff --git a/docs/conf.py b/docs/conf.py index ff039a5..6bada59 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/polymorphic/__init__.py b/polymorphic/__init__.py index b39f5cf..db6539c 100644 --- a/polymorphic/__init__.py +++ b/polymorphic/__init__.py @@ -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.