Skip to content

Commit

Permalink
Bump version to 0.7.2 to release a few minor bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vdboor committed Oct 1, 2015
1 parent 2ffbd51 commit ce4b934
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
12 changes: 11 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
Changelog
==========

Version 0.7.1 (2015-04/30)
Version 0.7.2 (2015-10-01)
--------------------------

* Added ``queryset.as_manager()`` support for Django 1.7/1.8
* Optimize model access for non-dumpdata usage; avoid ``__getattribute__()`` call each time to access the manager.
* Fixed 500 error when using invalid PK's in the admin URL, return 404 instead.
* Fixed possible issues when using an custom ``AdminSite`` class for the parent object.
* Fixed Pickle exception when polymorphic model is cached.


Version 0.7.1 (2015-04-30)
--------------------------

* Fixed Django 1.8 support for related field widgets.
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.7'
version = '0.7.2'
# The full version, including alpha/beta/rc tags.
release = '0.7'
release = '0.7.2'

# 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 @@ -2,4 +2,4 @@
"""
See PEP 440 (https://www.python.org/dev/peps/pep-0440/)
"""
__version__ = "0.7.1"
__version__ = "0.7.2"

0 comments on commit ce4b934

Please sign in to comment.