Skip to content
This repository was archived by the owner on Jun 29, 2019. It is now read-only.

Commit 80ae75b

Browse files
committed
Added info of version 0.3.2
1 parent 98e01e1 commit 80ae75b

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@ Instead your application should use the API defined by
116116
Changelog
117117
*********
118118

119+
New in version 0.3.2
120+
====================
121+
- Fixed a bug where MemcacheTokenStore saved objects instead of dictionaries.
122+
119123
New in version 0.3.1
120124
====================
121125
- Fixed a bug causing a supplied redirect uri being ignored if it is not the first entry in the list of a client object.

oauth2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def render_auth_page(self, request, response, environ, scopes):
8888
from oauth2.web import Request, Response
8989
from oauth2.tokengenerator import Uuid4
9090

91-
VERSION = "0.3.1"
91+
VERSION = "0.3.2"
9292

9393
class AccessToken(object):
9494
"""

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup
22

3-
VERSION = "0.3.1"
3+
VERSION = "0.3.2"
44

55
setup(name="python-oauth2",
66
version=VERSION,

0 commit comments

Comments
 (0)