Bump versions to 0.7
parent
363463e290
commit
07e1ff90a8
|
|
@ -1,14 +1,15 @@
|
|||
Changelog
|
||||
==========
|
||||
|
||||
Version 0.7 (in git)
|
||||
--------------------
|
||||
Version 0.7 (2015-04-08)
|
||||
------------------------
|
||||
|
||||
* Added Django 1.8 support
|
||||
* Added support for custom primary key defined using ``mybase_ptr = models.OneToOneField(BaseClass, parent_link=True, related_name="...")``.
|
||||
* Fixed Python 3 issue in the admin
|
||||
* Fixed ``_default_manager`` to be consistent with Django, it's now assigned directly instead of using ``add_to_class()``
|
||||
* Fixed 500 error for admin URLs without a '/', e.g. ``admin/app/parentmodel/id``.
|
||||
* Fixed preserved filter for Django admin in delete views
|
||||
* Removed test noise for diamond inheritance problem (which Django 1.7 detects)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -54,9 +54,9 @@ copyright = u'2013, Bert Constantin, Chris Glass, Diederik van der Boor'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '0.6.1'
|
||||
version = '0.7'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.6.1'
|
||||
release = '0.7'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
|||
|
|
@ -11,4 +11,4 @@ Release logic:
|
|||
6. git commit
|
||||
7. push to github
|
||||
"""
|
||||
__version__ = "0.6.1"
|
||||
__version__ = "0.7"
|
||||
|
|
|
|||
Loading…
Reference in New Issue