From b398e079989d19d11a6c87a2aeb1ecb48dda7d96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Jaworski?= Date: Fri, 9 Jan 2015 12:43:17 +0100 Subject: [PATCH] bump version to 1.4.0 with official python 3 support --- UPDATES | 4 ++++ userena/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/UPDATES b/UPDATES index d46197cb..90c7d025 100644 --- a/UPDATES +++ b/UPDATES @@ -1,5 +1,9 @@ This file contains all the backwards-incompatible changes. +Version 1.4.0 + +- python 3 support added + Version 1.3.2 - creating new user always creates new empty userena profile (fixes bug from 1.3.1) diff --git a/userena/__init__.py b/userena/__init__.py index 6cb42012..705900df 100644 --- a/userena/__init__.py +++ b/userena/__init__.py @@ -4,7 +4,7 @@ """ default_app_config = 'userena.apps.UserenaConfig' -VERSION = (1, 3, 2) +VERSION = (1, 4, 0) __version__ = '.'.join((str(each) for each in VERSION[:4]))