From 2b17fea9147e9894219e1c4ce77ccddb30b74d54 Mon Sep 17 00:00:00 2001 From: Michael Kelly Date: Tue, 15 Apr 2014 17:57:15 -0400 Subject: [PATCH] omg omg omg omg omg omg --- CHANGELOG.rst | 28 ++++++++++++++++++++++++++++ django_browserid/__init__.py | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7e7dbda..629699c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,34 @@ History ------- +0.10 (2014-04-15) ++++++++++++++++++ +- Massive documentation update, including upgrade instructions for older + versions. + +- Support and test on Python 3.2 and 3.3, and Django 1.6! + +- Disable automatic login and logout coming from Persona. This also fixes + logins being triggered in all open tabs on your site. + +- Replace in-page form for trigger logins with AJAX calls. Removes need for + {% browserid_info %} template tag. + +- Drop ``six`` from requirements. + +- Replace ``SITE_URL`` setting with ``BROWSERID_AUDIENCES`` and make it + optional when ``DEBUG`` is True. + +- Add support for logging-in to the admin interface with Persona. + +- Remove need to set custom context processor. + +- Replace ``verify`` function with the Verifier classes like + ``RemoteVerifier``. + +- And more! + + 0.9 (2013-08-25) ++++++++++++++++ - Add ``BROWSERID_VERIFY_CLASS`` to make it easier to customize the verification view. diff --git a/django_browserid/__init__.py b/django_browserid/__init__.py index ad8177e..9226af8 100644 --- a/django_browserid/__init__.py +++ b/django_browserid/__init__.py @@ -5,7 +5,7 @@ License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. """ -__version__ = '0.9' +__version__ = '0.10' from django_browserid.auth import BrowserIDBackend # NOQA from django_browserid.base import (