Skip to content

Commit

Permalink
Prepare for 1.6 release (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshblum authored Apr 25, 2017
1 parent e689b22 commit aa731bb
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
django-registration-redux changelog
===================================

Version 1.6, 25 April, 2017
----------------

* Feature: Make search for email case insensitive when resending activation
email.
`#250 <https://github.com/macropin/django-registration/pull/250>`_.
* Feature: Add ``RegistrationFormUsernameLowercase`` to force all usernames to
lowercase.
`#251 <https://github.com/macropin/django-registration/pull/251>`_.

Version 1.5, 08 April, 2017
----------------

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
# built documents.
#
# The short X.Y version.
version = '1.5'
version = '1.6'
# The full version, including alpha/beta/rc tags.
release = '1.5'
release = '1.6'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 8 additions & 0 deletions docs/upgrade.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,18 @@ older Django releases may work, but are officially unsupported. Additionally,
Backwards-incompatible changes
------------------------------

Version 1.6
```````````

- None

Version 1.5
```````````

- Support for Django 1.7 is removed, and Django 1.8 or newer is required.
- Change signature of ``RegistrationProfileManager.activate_user``.
``site`` is now a required positional argument.
See `#244 <https://github.com/macropin/django-registration/pull/244>`_.

Version 1.4
```````````
Expand Down
2 changes: 1 addition & 1 deletion registration/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (1, 5, 0, 'final', 0)
VERSION = (1, 6, 0, 'final', 0)


def get_version():
Expand Down

0 comments on commit aa731bb

Please sign in to comment.