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.