diff --git a/CHANGELOG.md b/CHANGELOG.md index 3667efa..ae386af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ### [Unreleased] +### [0.3.0] - 2016-02-23 + ##### Added - Support OAuth2 requests. - Decorator for protecting views with OAuth2. diff --git a/example_project/requirements.txt b/example_project/requirements.txt index 3467158..7f5a1f8 100644 --- a/example_project/requirements.txt +++ b/example_project/requirements.txt @@ -1,2 +1,2 @@ django==1.9 -https://github.com/juanifioren/django-oidc-provider/archive/v0.2.x.zip +https://github.com/juanifioren/django-oidc-provider/archive/v0.3.x.zip diff --git a/setup.py b/setup.py index 5500690..66813ef 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-oidc-provider', - version='0.2.5', + version='0.3.0', packages=[ 'oidc_provider', 'oidc_provider/lib', 'oidc_provider/lib/endpoints', 'oidc_provider/lib/utils', 'oidc_provider/tests', 'oidc_provider/tests/app',