This repository was archived by the owner on Sep 15, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 15
15
* To authenticate users against Crowd,
16
16
add ``django_crowd_auth.backends.Backend `` to ``AUTHENTICATION_BACKENDS ``.
17
17
* To enable single-sign-on,
18
- add ``django_crowd_auth.middleware .sso `` to ``MIDDLEWARE ``.
18
+ add ``django_crowd_auth.middlewares .sso `` to ``MIDDLEWARE ``.
19
19
Ensure you also have
20
20
``django.contrib.sessions.middleware.SessionMiddleware `` and
21
21
``django.contrib.auth.middleware.AuthenticationMiddleware `` placed before it.
@@ -94,7 +94,7 @@ Example
94
94
MIDDLEWARE = [
95
95
' django.contrib.sessions.middleware.SessionMiddleware' ,
96
96
' django.contrib.auth.middleware.AuthenticationMiddleware' ,
97
- ' django_crowd_auth.middleware .sso' ,
97
+ ' django_crowd_auth.middlewares .sso' ,
98
98
]
99
99
100
100
Original file line number Diff line number Diff line change 1
- __version__ = '0.7 .0'
1
+ __version__ = '0.8 .0'
You can’t perform that action at this time.
0 commit comments