diff --git a/README.rst b/README.rst index 8d28cb7f1..e80a3a22c 100644 --- a/README.rst +++ b/README.rst @@ -90,6 +90,11 @@ Roadmap / Todo list (help wanted) Changelog --------- +0.7.2 [2014-07-02] +~~~~~~~~~~~~~~~~~~ + +* Don't pin oauthlib + 0.7.1 [2014-04-27] ~~~~~~~~~~~~~~~~~~ diff --git a/docs/changelog.rst b/docs/changelog.rst index f5df500f2..f6bbef226 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,12 @@ Changelog ========= +0.7.2 [2014-07-02] +~~~~~~~~~~~~~~~~~~ + +* Don't pin oauthlib + + 0.7.0 [2014-03-01] ------------------ diff --git a/oauth2_provider/__init__.py b/oauth2_provider/__init__.py index 2332e51d3..f6c203077 100644 --- a/oauth2_provider/__init__.py +++ b/oauth2_provider/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.7.1' +__version__ = '0.7.2' __author__ = "Massimiliano Pippi & Federico Frenguelli" diff --git a/requirements/base.txt b/requirements/base.txt index d1814ff16..88e71e6f8 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,5 +1,5 @@ Sphinx==1.2b1 South==0.8.2 -oauthlib==0.6.1 +oauthlib>=0.6.1 six==1.3.0 django-braces==1.2.2 diff --git a/setup.py b/setup.py index b3fda630f..f5790a425 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ def get_version(package): 'django>=1.4', 'django-braces>=1.2.2', 'six>=1.3.0', - 'oauthlib==0.6.1', + 'oauthlib>=0.6.1', ], zip_safe=False, )