Skip to content
This repository was archived by the owner on Jan 29, 2019. It is now read-only.

Commit 2b17fea

Browse files
author
Michael Kelly
committed
omg omg omg omg omg omg
1 parent 08c88d3 commit 2b17fea

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

CHANGELOG.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,34 @@
33
History
44
-------
55

6+
0.10 (2014-04-15)
7+
+++++++++++++++++
8+
- Massive documentation update, including upgrade instructions for older
9+
versions.
10+
11+
- Support and test on Python 3.2 and 3.3, and Django 1.6!
12+
13+
- Disable automatic login and logout coming from Persona. This also fixes
14+
logins being triggered in all open tabs on your site.
15+
16+
- Replace in-page form for trigger logins with AJAX calls. Removes need for
17+
{% browserid_info %} template tag.
18+
19+
- Drop ``six`` from requirements.
20+
21+
- Replace ``SITE_URL`` setting with ``BROWSERID_AUDIENCES`` and make it
22+
optional when ``DEBUG`` is True.
23+
24+
- Add support for logging-in to the admin interface with Persona.
25+
26+
- Remove need to set custom context processor.
27+
28+
- Replace ``verify`` function with the Verifier classes like
29+
``RemoteVerifier``.
30+
31+
- And more!
32+
33+
634
0.9 (2013-08-25)
735
++++++++++++++++
836
- Add ``BROWSERID_VERIFY_CLASS`` to make it easier to customize the verification view.

django_browserid/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
License, v. 2.0. If a copy of the MPL was not distributed with this
66
file, You can obtain one at http://mozilla.org/MPL/2.0/.
77
"""
8-
__version__ = '0.9'
8+
__version__ = '0.10'
99

1010
from django_browserid.auth import BrowserIDBackend # NOQA
1111
from django_browserid.base import (

0 commit comments

Comments
 (0)