forked from bread-and-pepper/django-userena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UPDATES
19 lines (13 loc) · 738 Bytes
/
UPDATES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
This file contains all the backwards-incompatible changes.
Version 1.1.2
- Activation view no longer contains username. If you override
`userena/templates/userena/emails/activation_email_message.txt` and
`userena/templates/userena/emails/confirmation_email_message_new.txt` be sure
to remove username from the URL.
Version 1.1
- Userena now requires Django >= 1.3 because of the use of class based views.
Version 1.0.1
- Removed the ``user`` relationship outside ``UserenaBaseProfile`` model. This
allows the user to define it's own relationship and fixes a conflict while
running ``manage.py test``. To migrate, place the ``user`` field inside your
profile model, instead of inheriting it from the ``abstract`` class.