diff --git a/CREDITS b/CREDITS index ed38aa3a..2ebc6431 100644 --- a/CREDITS +++ b/CREDITS @@ -3,4 +3,5 @@ Grigoriy Petukhov: http://web-brains.com (for creating django-account) Lukasz Balcerzak: http://djangopeople.net/lukaszbalcerzak/ (for django-guardian and Polish translations) George Notaras: http://www.g-loaded.eu (for making userena 2.4 compatible) Jannis Leidel: http://enn.io (for fixing installation script) -Guillaume Esquevin: http://www.platypus-creation.com (for improving translations) \ No newline at end of file +Guillaume Esquevin: http://www.platypus-creation.com (for improving translations) +Aram Dulyan: http://interaction.net.au/ (for making userena compatible with Django 1.5 user model) diff --git a/userena/__init__.py b/userena/__init__.py index c620939d..fd5de1bf 100644 --- a/userena/__init__.py +++ b/userena/__init__.py @@ -2,7 +2,7 @@ Django accounts management made easy. """ -VERSION = (1, 1, 2) +VERSION = (1, 2, 0) __version__ = '.'.join((str(each) for each in VERSION[:4]))