From e8ddd19521f08eb7e0ce190ca9183e5f2bd363b1 Mon Sep 17 00:00:00 2001 From: Petar Radosevic Date: Wed, 26 Feb 2014 10:17:52 +0100 Subject: [PATCH] Version 1.3.0 --- CREDITS | 1 + userena/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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]))