From 6cc09546e37ce9367889b4d04c240364dc3605cc Mon Sep 17 00:00:00 2001 From: mjaworski Date: Wed, 23 Mar 2016 10:25:12 +0100 Subject: [PATCH] bump version and update changes list --- UPDATES.md | 7 +++++++ userena/__init__.py | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/UPDATES.md b/UPDATES.md index b1a2d75f..50fe0943 100644 --- a/UPDATES.md +++ b/UPDATES.md @@ -4,6 +4,13 @@ This file contains all the backwards-incompatible (since 1.0.1) and other significant (since 1.4.1) changes. +## Version 2.0.1 + +Fixes and improvements: + +- Fixed missing `README.md` that caused installation failure (#517). +- Use universal wheels when distributing the package. + ## Version 2.0.0 Backwards incompatible changes: diff --git a/userena/__init__.py b/userena/__init__.py index 914fdde9..2fcbd7de 100644 --- a/userena/__init__.py +++ b/userena/__init__.py @@ -4,10 +4,11 @@ """ default_app_config = 'userena.apps.UserenaConfig' -VERSION = (2, 0, 0) +VERSION = (2, 0, 1) __version__ = '.'.join((str(each) for each in VERSION[:4])) + def get_version(): """ Returns string with digit parts only as version.