Skip to content

Commit cb0abee

Browse files
committed
Version 0.5.0. Changelog and readme updated
1 parent e641795 commit cb0abee

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

README.rst

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Requirements
4242
------------
4343

4444
* Python 2.7, 3.3
45-
* Django 1.4, 1.5, 1.6b3
45+
* Django 1.4, 1.5, 1.6
4646

4747
Installation
4848
------------
@@ -93,6 +93,22 @@ Highest priority first
9393
Changelog
9494
---------
9595

96+
0.5.0 [2013-09-17]
97+
98+
* oauthlib 0.6.0 support
99+
100+
**Backwards incompatible changes in 0.5.0**
101+
102+
* `backends.py` module has been renamed to `oauth2_backends.py` so you should change your imports whether
103+
you're extending this module
104+
105+
**Bugfixes**
106+
107+
* Issue #54: Auth backend proposal to address #50
108+
* Issue #61: Fix contributing page
109+
* Issue #55: Add support for authenticating confidential client with request body params
110+
* Issue #53: Quote characters in the url query that are safe for Django but not for oauthlib
111+
96112
0.4.1 [2013-09-06]
97113

98114
* Optimize queries on access token validation

docs/changelog.rst

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

4+
0.5.0 [2013-09-17]
5+
------------------
6+
7+
* oauthlib 0.6.0 support
8+
9+
**Backwards incompatible changes in 0.5.0**
10+
11+
* backends.py module has been renamed to oauth2_backends.py so you should change your imports whether you're extending
12+
this module
13+
14+
**Bugfixes**
15+
16+
* Issue #54: Auth backend proposal to address #50
17+
* Issue #61: Fix contributing page
18+
* Issue #55: Add support for authenticating confidential client with request body params
19+
* Issue #53: Quote characters in the url query that are safe for Django but not for oauthlib
20+
421
0.4.1 [2013-09-06]
522
------------------
623

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.4.1'
1+
__version__ = '0.5.0'
22

33
__author__ = "Massimiliano Pippi & Federico Frenguelli"
44

0 commit comments

Comments
 (0)