Skip to content

Commit dee102f

Browse files
committed
Bumped version to 0.12.0
1 parent a6f5dd4 commit dee102f

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### 0.12.0 [Unreleased]
1+
### 0.12.0 [2017-02-24]
22

33
* **New feature**: Class-based scopes backends. Listing scopes, available scopes and default scopes
44
is now done through the class that the `SCOPES_BACKEND_CLASS` setting points to.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Requirements
4848
------------
4949

5050
* Python 2.7, 3.4, 3.5, 3.6
51-
* Django 1.8, 1.9, 1.10
51+
* Django 1.8, 1.9, 1.10, 1.11
5252

5353
Installation
5454
------------

docs/changelog.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
Changelog
22
=========
33

4+
0.12.0 [2017-02-24]
5+
-------------------
6+
7+
* **New feature**: Class-based scopes backends. Listing scopes, available scopes and default scopes
8+
is now done through the class that the `SCOPES_BACKEND_CLASS` setting points to.
9+
By default, this is set to `oauth2_provider.scopes.SettingsScopes` which implements the
10+
legacy settings-based scope behaviour. No changes are necessary.
11+
* **Dropped support for Python 3.2 and Python 3.3**, added support for Python 3.6
12+
* Support for the `scopes` query parameter, deprecated in 0.6.1, has been dropped
13+
* #448: Added support for customizing applications' allowed grant types
14+
* #141: The `is_usable(request)` method on the Application model can be overridden to dynamically
15+
enable or disable applications.
16+
* #434: Relax URL patterns to allow for UUID primary keys
17+
18+
419
0.11.0 [2016-12-1]
520
------------------
621

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Requirements
2222
------------
2323

2424
* Python 2.7, 3.4, 3.5, 3.6
25-
* Django 1.8, 1.9, 1.10
25+
* Django 1.8, 1.9, 1.10, 1.11
2626

2727
Index
2828
=====

oauth2_provider/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.11.0'
1+
__version__ = '0.12.0'
22

33
__author__ = "Massimiliano Pippi & Federico Frenguelli"
44

0 commit comments

Comments
 (0)