Merge pull request #196 from wojtek-fliposports/v0.5.x

Added changedlog and bump version
This commit is contained in:
Juan Ignacio Fiorentino 2017-07-11 10:18:43 -03:00 committed by GitHub
commit faf64e4e38
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]
### [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

View file

@ -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

View file

@ -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
==================

View file

@ -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',