diff --git a/CHANGELOG.md b/CHANGELOG.md index fab9491..bd49e82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,11 @@ All notable changes to this project will be documented in this file. ### [Unreleased] +### [0.1.1] - 2015-07-31 + ##### Added - Sending access_token as query string parameter in UserInfo Endpoint. +- Support HTTP Basic client authentication. ##### Changed - Use models setting instead of User. diff --git a/README.rst b/README.rst index b514953..259f272 100644 --- a/README.rst +++ b/README.rst @@ -29,7 +29,7 @@ Support for Python 3 and 2. Also latest versions of django. Read docs for more info. -https://github.com/juanifioren/django-oidc-provider/blob/v0.1.0/DOC.md +https://github.com/juanifioren/django-oidc-provider/blob/v0.1.1/DOC.md See changelog here. diff --git a/example_project/requirements.txt b/example_project/requirements.txt index 4aad140..813930d 100644 --- a/example_project/requirements.txt +++ b/example_project/requirements.txt @@ -1,2 +1,2 @@ django==1.8 -django-oidc-provider==0.1.0 +django-oidc-provider==0.1.1 diff --git a/setup.py b/setup.py index f99b6d0..2a73ef3 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-oidc-provider', - version='0.1.0', + version='0.1.1', packages=[ 'oidc_provider', 'oidc_provider/lib', 'oidc_provider/lib/endpoints', 'oidc_provider/lib/utils', 'oidc_provider/tests', 'oidc_provider/tests/app',