Skip to content

Commit

Permalink
Bump versions to 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
vdboor committed Apr 8, 2015
1 parent 363463e commit 07e1ff9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
# 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.
Expand Down
2 changes: 1 addition & 1 deletion polymorphic/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
6. git commit
7. push to github
"""
__version__ = "0.6.1"
__version__ = "0.7"

0 comments on commit 07e1ff9

Please sign in to comment.