From c76f73eb7e9d4bdb45455c6821c8fb9feb2e4539 Mon Sep 17 00:00:00 2001 From: juanifioren Date: Fri, 25 Sep 2015 17:24:58 -0300 Subject: [PATCH] Bump version 0.2.0. --- CHANGELOG.md | 5 ++++- README.rst | 4 ++-- oidc_provider/tests/test_logout_endpoint.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index baae137..2548852 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.rst b/README.rst index d7479e0..20ad9e7 100644 --- a/README.rst +++ b/README.rst @@ -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. diff --git a/oidc_provider/tests/test_logout_endpoint.py b/oidc_provider/tests/test_logout_endpoint.py index 2462699..40f4200 100644 --- a/oidc_provider/tests/test_logout_endpoint.py +++ b/oidc_provider/tests/test_logout_endpoint.py @@ -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) - diff --git a/setup.py b/setup.py index 1cd88c3..1023408 100644 --- a/setup.py +++ b/setup.py @@ -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',