Skip to content

Commit ad2f5ba

Browse files
committed
Version 0.4.0
1 parent 85128df commit ad2f5ba

File tree

4 files changed

+54
-12
lines changed

4 files changed

+54
-12
lines changed

README.rst

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,36 @@ Highest priority first
8686
Changelog
8787
---------
8888

89+
0.4.0 [2013-08-09]
90+
91+
**New Features**
92+
93+
* Add Application management views, you no more need the admin to register, update and delete your application.
94+
* Add support to configurable application model
95+
* Add support for function based views
96+
97+
**Backwards incompatible changes in 0.4.0**
98+
99+
* `SCOPE` attribute in settings is now a dictionary to store `{'scope_name': 'scope_description'}`
100+
* Namespace 'oauth2_provider' is mandatory in urls. See issue #36
101+
102+
**Bugfixes**
103+
104+
* Issue #25: Bug in the Basic Auth parsing in Oauth2RequestValidator
105+
* Issue #24: Avoid generation of client_id with ":" colon char when using HTTP Basic Auth
106+
* Issue #21: IndexError when trying to authorize an application
107+
* Issue #9: Default_redirect_uri is mandatory when grant_type is implicit, authorization_code or all-in-one
108+
* Issue #22: Scopes need a verbose description
109+
* Issue #33: Add django-oauth-toolkit version on example main page
110+
* Issue #36: Add mandatory namespace to urls
111+
* Issue #31: Add docstring to OAuthToolkitError and FatalClientError
112+
* Issue #32: Add docstring to validate_uris
113+
* Issue #34: Documentation tutorial part1 needs corsheaders explanation
114+
* Issue #36: Add mandatory namespace to urls
115+
* Issue #45: Add docs for AbstractApplication
116+
* Issue #47: Add docs for views decorators
117+
118+
89119
0.3.2 [2013-07-10]
90120

91121
* Bugfix #37: Error in migrations with custom user on Django 1.5

docs/changelog.rst

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,36 @@
11
Changelog
22
=========
33

4-
0.4.0 [in development]
4+
0.4.0 [2013-08-09]
55
----------------------
66

7-
* Add Application management views, you no more need the admin to register, update and delete your application. TODO: add docs reference
8-
* Bugfix #25: Bug in the Basic Auth parsing in Oauth2RequestValidator
9-
* Bugfix #24: Avoid generation of client_id with ":" colon char when using HTTP Basic Auth
10-
* Bugfix #21: IndexError when trying to authorize an application
11-
* Bugfix #9: Default_redirect_uri is mandatory when grant_type is implicit, authorization_code or all-in-one
12-
* Bugfix #22: Scopes need a verbose description
13-
* Bugfix #33: Add django-oauth-toolkit version on example main page
14-
* Bugfix #36: Add mandatory namespace to urls
15-
* Bugfix #31: Add docstring to OAuthToolkitError and FatalClientError
7+
**New Features**
8+
9+
* Add Application management views, you no more need the admin to register, update and delete your application.
10+
* Add support to configurable application model
11+
* Add support for function based views
1612

1713
**Backwards incompatible changes in 0.4.0**
1814

1915
* `SCOPE` attribute in settings is now a dictionary to store `{'scope_name': 'scope_description'}`
2016
* Namespace 'oauth2_provider' is mandatory in urls. See issue #36
2117

18+
**Bugfixes**
19+
20+
* Issue #25: Bug in the Basic Auth parsing in Oauth2RequestValidator
21+
* Issue #24: Avoid generation of client_id with ":" colon char when using HTTP Basic Auth
22+
* Issue #21: IndexError when trying to authorize an application
23+
* Issue #9: Default_redirect_uri is mandatory when grant_type is implicit, authorization_code or all-in-one
24+
* Issue #22: Scopes need a verbose description
25+
* Issue #33: Add django-oauth-toolkit version on example main page
26+
* Issue #36: Add mandatory namespace to urls
27+
* Issue #31: Add docstring to OAuthToolkitError and FatalClientError
28+
* Issue #32: Add docstring to validate_uris
29+
* Issue #34: Documentation tutorial part1 needs corsheaders explanation
30+
* Issue #36: Add mandatory namespace to urls
31+
* Issue #45: Add docs for AbstractApplication
32+
* Issue #47: Add docs for views decorators
33+
2234
0.3.2 [2013-07-10]
2335
------------------
2436

oauth2_provider/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '0.3.2'
1+
__version__ = '0.4.0'
22

33
VERSION = __version__ # synonym

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def get_version(package):
2525
description="OAuthlib for Django",
2626
long_description=LONG_DESCRIPTION,
2727
classifiers=[
28-
"Development Status :: 3 - Alpha",
28+
"Development Status :: 4 - Beta",
2929
"Environment :: Web Environment",
3030
"Framework :: Django",
3131
"License :: OSI Approved :: BSD License",

0 commit comments

Comments
 (0)