Skip to content

Commit

Permalink
0.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pennersr committed Jan 1, 2017
1 parent 6e5c707 commit 76df7ee
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Unreleased
**********
0.30.0 (2017-01-01)
*******************

Note worthy changes
-------------------
Expand All @@ -25,6 +25,9 @@ Note worthy changes

- The Battle.net login backend now accepts the ``region`` GET parameter.

- New providers: 500px, Discord.


Backwards incompatible changes
------------------------------

Expand All @@ -51,6 +54,7 @@ Note worthy changes

- Addressed Django 1.10 deprecation warnings.


0.28.0 (2016-10-13)
*******************

Expand Down
4 changes: 2 additions & 2 deletions allauth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"""

VERSION = (0, 29, 0, 'final', 0)
VERSION = (0, 30, 0, 'final', 0)

__title__ = 'django-allauth'
__version_info__ = VERSION
__version__ = '.'.join(map(str, VERSION[:3])) + ('-{}{}'.format(
VERSION[3], VERSION[4] or '') if VERSION[3] != 'final' else '')
__author__ = 'Raymond Penners'
__license__ = 'MIT'
__copyright__ = 'Copyright 2010-2016 Raymond Penners and contributors'
__copyright__ = 'Copyright 2010-2017 Raymond Penners and contributors'
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@

# General information about the project.
project = u'django-allauth'
copyright = u'2016, Raymond Penners'
copyright = u'2017, Raymond Penners'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.29.0'
version = '0.30.0'
# The full version, including alpha/beta/rc tags.
release = '0.29.0'
release = '0.30.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 76df7ee

Please sign in to comment.