Bump to v1.1b1
parent
9cbfc7199b
commit
e06aa6ae80
|
|
@ -1,6 +1,14 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
Version 1.1 (1.1b1)
|
||||
-------------------
|
||||
|
||||
* Added class based formset views in ``polymorphic/contrib/extra_views``.
|
||||
* Added helper function ``polymorphic.utils.reset_polymorphic_ctype()``.
|
||||
This eases the migration old existing models to polymorphic.
|
||||
|
||||
|
||||
Version 1.0.2 (2016-10-14)
|
||||
--------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -62,9 +62,9 @@ copyright = u'2013, Bert Constantin, Chris Glass, Diederik van der Boor'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '1.0.2'
|
||||
version = '1.1'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '1.0.2'
|
||||
release = '1.1b1'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ Please see LICENSE and AUTHORS for more information.
|
|||
import django
|
||||
|
||||
# See PEP 440 (https://www.python.org/dev/peps/pep-0440/)
|
||||
__version__ = "1.0.2"
|
||||
__version__ = "1.1b1"
|
||||
|
||||
|
||||
# Monkey-patch Django < 1.5 to allow ContentTypes for proxy models.
|
||||
|
|
|
|||
Loading…
Reference in New Issue