Skip to content

Commit

Permalink
Bump version to 0.7.2 and update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
maiksprenger committed Jun 19, 2014
1 parent a400a24 commit 64b4269
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/source/releases/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ Release notes for each version of Oscar published to PyPI.

v0.7
v0.7.1
v0.7.2
20 changes: 20 additions & 0 deletions docs/source/releases/v0.7.2.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
=========================
Oscar 0.7.2 release notes
=========================

This is Oscar 0.7.2, a minor security release. If you rely on the
``permissions_required`` decorator or the
``Application.permissions_map`` and ``Application.default_permissions`` syntax,
you must upgrade.

Bug fixes
=========

* The ``permissions_required`` decorator now handles both methods and
properties on the User model. Previously, it wasn't supported, but a
docstring showed ``is_anonymous`` as an example, which is a
method.

* It fixes a syntax error in ``basket.views.BasketView`` when rendering an
error message. Previously, trying to save an item for later while not
being logged in would cause an Internal Server Error.
2 changes: 1 addition & 1 deletion oscar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Use 'final' as the 4th element to indicate
# a full release

VERSION = (0, 7, 1, 'final')
VERSION = (0, 7, 2, 'final')


def get_short_version():
Expand Down

0 comments on commit 64b4269

Please sign in to comment.