diff --git a/docs/changelog.rst b/docs/changelog.rst index 9499e72..714482d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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) diff --git a/docs/conf.py b/docs/conf.py index cbd3244..0103ca2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/polymorphic/__version__.py b/polymorphic/__version__.py index 538ab00..6460cb1 100644 --- a/polymorphic/__version__.py +++ b/polymorphic/__version__.py @@ -11,4 +11,4 @@ Release logic: 6. git commit 7. push to github """ -__version__ = "0.6.1" +__version__ = "0.7"