Browse Source

Bump version to 0.7.2 and update docs

master
Maik Hoepfel 11 years ago
parent
commit
64b426967e
3 changed files with 22 additions and 1 deletions
  1. 1
    0
      docs/source/releases/index.rst
  2. 20
    0
      docs/source/releases/v0.7.2.rst
  3. 1
    1
      oscar/__init__.py

+ 1
- 0
docs/source/releases/index.rst View File

@@ -32,3 +32,4 @@ Release notes for each version of Oscar published to PyPI.
32 32
 
33 33
     v0.7
34 34
     v0.7.1
35
+    v0.7.2

+ 20
- 0
docs/source/releases/v0.7.2.rst View File

@@ -0,0 +1,20 @@
1
+=========================
2
+Oscar 0.7.2 release notes
3
+=========================
4
+
5
+This is Oscar 0.7.2, a minor security release. If you rely on the
6
+``permissions_required`` decorator or the
7
+``Application.permissions_map`` and ``Application.default_permissions`` syntax,
8
+you must upgrade.
9
+
10
+Bug fixes
11
+=========
12
+
13
+* The ``permissions_required`` decorator now handles both methods and
14
+  properties on the User model. Previously, it wasn't supported, but a
15
+  docstring showed ``is_anonymous`` as an example, which is a
16
+  method.
17
+
18
+* It fixes a syntax error in ``basket.views.BasketView`` when rendering an
19
+  error message. Previously, trying to save an item for later while not
20
+  being logged in would cause an Internal Server Error.

+ 1
- 1
oscar/__init__.py View File

@@ -3,7 +3,7 @@ import os
3 3
 # Use 'final' as the 4th element to indicate
4 4
 # a full release
5 5
 
6
-VERSION = (0, 7, 1, 'final')
6
+VERSION = (0, 7, 2, 'final')
7 7
 
8 8
 
9 9
 def get_short_version():

Loading…
Cancel
Save