From 7407e2c5b09736bb905ca2d817454cb4157e1c18 Mon Sep 17 00:00:00 2001 From: Wojciech Bartosiak Date: Tue, 11 Jul 2017 07:29:24 +0200 Subject: [PATCH] Bump version --- CHANGELOG.md | 14 ++++++++++++++ docs/conf.py | 6 +++--- docs/sections/installation.rst | 4 ++-- setup.py | 2 +- 4 files changed, 20 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f572a6d..a21dc8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. ### [Unreleased] +### [0.5.1] - 2017-07-11 + +##### Changed +- Documentation template to `Read The Docs`. + +##### Fixed +- `install_requires` has not longer pinned versions. +- Removed infinity loop during authorization przez `prompt=login` has been send. +- Changed `prompt` handling as set of options instead of regular string. +- Redirect URIs must match exactly with query params. +- Stored user consent are usefull for public clients too. +- Fixed documentation for custom scopes handling. +- Scopes during refresh and code exchange are being taken from authorization request and not from query params + ### [0.5.0] - 2017-05-18 ##### Added diff --git a/docs/conf.py b/docs/conf.py index e3760f6..1d0828f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ author = u'Juan Ignacio Fiorentino' # built documents. # # The short X.Y version. -version = u'0.3' +version = u'0.5' # The full version, including alpha/beta/rc tags. -release = u'0.3.x' +release = u'0.5.x' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -106,7 +106,7 @@ todo_include_todos = False # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'alabaster' +html_theme = 'sphinx_rtd_theme' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the diff --git a/docs/sections/installation.rst b/docs/sections/installation.rst index 53db3ed..ebfe61e 100644 --- a/docs/sections/installation.rst +++ b/docs/sections/installation.rst @@ -6,8 +6,8 @@ Installation Requirements ============ -* Python: ``2.7`` ``3.4`` ``3.5`` -* Django: ``1.7`` ``1.8`` ``1.9`` ``1.10`` +* Python: ``2.7`` ``3.4`` ``3.5`` ``3.6`` +* Django: ``1.7`` ``1.8`` ``1.9`` ``1.10`` ``1.11`` Quick Installation ================== diff --git a/setup.py b/setup.py index df451ac..cd0abc6 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-oidc-provider', - version='0.5.0', + version='0.5.1', packages=find_packages(), include_package_data=True, license='MIT License',