Bump version 0.2.0.

This commit is contained in:
juanifioren 2015-09-25 17:24:58 -03:00
parent 62f72b7ef5
commit c76f73eb7e
4 changed files with 8 additions and 5 deletions

View file

@ -2,7 +2,10 @@
All notable changes to this project will be documented in this file.
### [Unreleased]
### [0.2.0] - 2015-09-25
##### Changed
- UserInfo model was removed. Now you can add your own model using OIDC_USERINFO setting.
##### Fixed
- ID token does NOT contain kid.

View file

@ -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.2/DOC.md
https://github.com/juanifioren/django-oidc-provider/blob/v0.2.0/DOC.md
See changelog here.
@ -51,4 +51,4 @@ We love contributions, so please feel free to fix bugs, improve things, provide
* Fork the project.
* Make your feature addition or bug fix.
* Add tests for it inside :code:`oidc_provider/tests`. Then run all and ensure everything is OK (read docs for how to test in all envs).
* Send pull request to the specific version branch, for example :code:`v0.1.x`.
* Send pull request to the specific version branch.

View file

@ -6,6 +6,7 @@ from oidc_provider.tests.app.utils import *
class UserInfoTestCase(TestCase):
def setUp(self):
self.user = create_fake_user()
self.url = reverse('oidc_provider:logout')
@ -27,4 +28,3 @@ class UserInfoTestCase(TestCase):
self.assertGreater(len(self.client.session.keys()), 0)
self.client.get(self.url)
self.assertEqual(len(self.client.session.keys()), 0)

View file

@ -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.2',
version='0.2.0',
packages=[
'oidc_provider', 'oidc_provider/lib', 'oidc_provider/lib/endpoints',
'oidc_provider/lib/utils', 'oidc_provider/tests', 'oidc_provider/tests/app',