Bump version

This commit is contained in:
Wojciech Bartosiak 2017-07-11 07:29:24 +02:00
parent 45717a82f2
commit 7407e2c5b0
4 changed files with 20 additions and 6 deletions

View file

@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
### [Unreleased] ### [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 ### [0.5.0] - 2017-05-18
##### Added ##### Added

View file

@ -53,9 +53,9 @@ author = u'Juan Ignacio Fiorentino'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = u'0.3' version = u'0.5'
# The full version, including alpha/beta/rc tags. # 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 # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # 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 # The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes. # 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 # 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 # further. For a list of options available for each theme, see the

View file

@ -6,8 +6,8 @@ Installation
Requirements Requirements
============ ============
* Python: ``2.7`` ``3.4`` ``3.5`` * Python: ``2.7`` ``3.4`` ``3.5`` ``3.6``
* Django: ``1.7`` ``1.8`` ``1.9`` ``1.10`` * Django: ``1.7`` ``1.8`` ``1.9`` ``1.10`` ``1.11``
Quick Installation Quick Installation
================== ==================

View file

@ -10,7 +10,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup( setup(
name='django-oidc-provider', name='django-oidc-provider',
version='0.5.0', version='0.5.1',
packages=find_packages(), packages=find_packages(),
include_package_data=True, include_package_data=True,
license='MIT License', license='MIT License',