Skip to content

Commit ebcef60

Browse files
committed
Bump version: 0.1.10 → 0.2.0
1 parent 7aa32e5 commit ebcef60

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

HISTORY.rst

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,38 @@
22
33
History
44
-------
5+
0.2.0 (2017-06-07)
6+
+++++++++++++++++++
7+
8+
Backwards-incompatible changes:
9+
10+
* Drop support for Django 1.9 (#130)
11+
12+
If you're using Django 1.9, you should update Django first.
13+
14+
* Move middleware to `mozilla_django_oidc.middleware` and
15+
change it to use authentication endpoint with `prompt=none` (#94)
16+
17+
You'll need to update your `MIDDLEWARE_CLASSES`/`MIDDLEWARE`
18+
setting accordingly.
19+
20+
* Remove legacy base64 handling of OIDC secret. Now RP secret
21+
should be plaintext.
22+
23+
Features:
24+
25+
* Add support for Django 1.11 and Python 3.6 (#85)
26+
* Update middleware to work with Django 1.10+ (#90)
27+
* Documentation updates
28+
* Rework test infrastructure so it's tox-based (#100)
29+
30+
Bugs:
31+
32+
* always decode verified token before json.load() (#116)
33+
* always redirect to logout_url even when logged out (#121)
34+
* Change email matching to be case-insensitive (#102)
35+
* Allow combining OIDCAuthenticationBackend with other backends (#87)
36+
* fix is_authenticated usage for Django 1.10+ (#125)
537

638
0.1.0 (2016-10-12)
739
++++++++++++++++++

mozilla_django_oidc/__init__.py

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

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.10
2+
current_version = 0.2.0
33
commit = True
44
tag = True
55

0 commit comments

Comments
 (0)