diff --git a/CREDITS b/CREDITS index 2ebc6431..9f692c1f 100644 --- a/CREDITS +++ b/CREDITS @@ -5,3 +5,4 @@ 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) Aram Dulyan: http://interaction.net.au/ (for making userena compatible with Django 1.5 user model) +MichaƂ Jaworski: Add tox testing and updating Userena to work with Django 1.6. diff --git a/userena/__init__.py b/userena/__init__.py index 473c6c87..e21df5dd 100644 --- a/userena/__init__.py +++ b/userena/__init__.py @@ -2,7 +2,7 @@ Django accounts management made easy. """ -VERSION = (1, 2, 4) +VERSION = (1, 3, 0) __version__ = '.'.join((str(each) for each in VERSION[:4]))