Skip to content
This repository has been archived by the owner on Oct 22, 2019. It is now read-only.

Commit

Permalink
bump version and update changes list
Browse files Browse the repository at this point in the history
  • Loading branch information
swistakm committed Mar 23, 2016
1 parent d1098c1 commit 6cc0954
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions UPDATES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion userena/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 6cc0954

Please sign in to comment.