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]))