Merge pull request #206 from juanifioren/develop_and_0.5.x_merge
Develop and 0.5.x merge
This commit is contained in:
commit
9678505a72
4 changed files with 28 additions and 6 deletions
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
### [Unreleased]
|
||||
|
||||
|
||||
### [0.5.2] - 2017-08-22
|
||||
|
||||
##### Fixed
|
||||
- Fix infinite login loop if "prompt=login" (#198)
|
||||
- Fix Django 2.0 deprecation warnings (#185)
|
||||
|
||||
|
||||
### [0.5.1] - 2017-07-11
|
||||
|
||||
##### Changed
|
||||
- Documentation template changed to `Read The Docs`.
|
||||
|
||||
##### Fixed
|
||||
- `install_requires` has not longer pinned versions.
|
||||
- Removed infinity loop during authorization stage when `prompt=login` has been send.
|
||||
- Changed `prompt` handling as set of options instead of regular string.
|
||||
- Redirect URI must match exactly with given in query parameter.
|
||||
- Stored user consent are useful 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 parameters.
|
||||
|
||||
### [0.5.0] - 2017-05-18
|
||||
|
||||
##### Added
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
==================
|
||||
|
|
2
setup.py
2
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.2',
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
license='MIT License',
|
||||
|
|
Loading…
Reference in a new issue