Skip to content

Commit

Permalink
0.7.1 release, make logout buttons workable.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Kelly committed Nov 8, 2012
1 parent 15550f1 commit 865407e
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 4 deletions.
1 change: 1 addition & 0 deletions AUTHORS.rst
Expand Up @@ -37,3 +37,4 @@ Patches and Suggestions
- Greg Koberger
- Niran Babalola
- callmekatootie
- Paul Mclanahan
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -3,6 +3,14 @@
History
-------

0.7.1 (2012-11-08)
++++++++++++++++++

- Add support for a working logout button. Switching to the Observer API in 0.7
made the issue that we weren't calling ``navigator.id.logout`` more
pronounced, so it makes sense to make a small new release to make it easier
to add a logout button.

0.7 (2012-11-07)
++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion django_browserid/__init__.py
Expand Up @@ -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.7'
__version__ = '0.7.1'

from django_browserid.auth import BrowserIDBackend # NOQA
from django_browserid.base import get_audience, verify # NOQA
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = "0.7"
version = "0.7.1"
# The full version, including alpha/beta/rc tags.
release = "0.7"
release = "0.7.1"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
5 changes: 5 additions & 0 deletions docs/dev/changelog.rst
@@ -0,0 +1,5 @@
Changelog
=========


.. include:: ../../CHANGELOG.rst
1 change: 1 addition & 0 deletions docs/index.rst
Expand Up @@ -30,4 +30,5 @@ Developer Guide
.. toctree::
:maxdepth: 1

dev/changelog
dev/authors
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -8,7 +8,7 @@
name='django-browserid',
description='Django application for adding BrowserID support.',
long_description=long_description,
version='0.7',
version='0.7.1',
packages=['django_browserid', 'django_browserid.tests'],
author='Paul Osman, Michael Kelly',
author_email='mkelly@mozilla.com',
Expand Down

0 comments on commit 865407e

Please sign in to comment.