Skip to content
This repository was archived by the owner on Sep 15, 2021. It is now read-only.

Commit aec3401

Browse files
committed
Merge tag '0.8.0' into develop
0.8.0 0.8.0
2 parents eb82841 + aabde8f commit aec3401

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
=========
2+
CHANGELOG
3+
=========
4+
5+
0.8.0
6+
=====
7+
8+
* Bug `#11 <https://github.com/pmuller/django-crowd-auth/pull/11>`_:
9+
Fix compatibility with Pip 10.x

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Usage
1515
* To authenticate users against Crowd,
1616
add ``django_crowd_auth.backends.Backend`` to ``AUTHENTICATION_BACKENDS``.
1717
* To enable single-sign-on,
18-
add ``django_crowd_auth.middleware.sso`` to ``MIDDLEWARE``.
18+
add ``django_crowd_auth.middlewares.sso`` to ``MIDDLEWARE``.
1919
Ensure you also have
2020
``django.contrib.sessions.middleware.SessionMiddleware`` and
2121
``django.contrib.auth.middleware.AuthenticationMiddleware`` placed before it.
@@ -94,7 +94,7 @@ Example
9494
MIDDLEWARE = [
9595
'django.contrib.sessions.middleware.SessionMiddleware',
9696
'django.contrib.auth.middleware.AuthenticationMiddleware',
97-
'django_crowd_auth.middleware.sso',
97+
'django_crowd_auth.middlewares.sso',
9898
]
9999
100100

django_crowd_auth/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.7.0'
1+
__version__ = '0.8.0'

0 commit comments

Comments
 (0)