diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8994ed9..f35bc3f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,14 @@ +0.4.1 +===== + +2015-04-15 + +* fixed missing email templates in distribution +* fixed Python 3 tag on wheel distribution +* fixed exceptions not being logged +* fixed exception when closing access request as non-reviewer + + 0.4.0 ===== diff --git a/setup.py b/setup.py index 881954c..2c4319a 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="teamvault", - version="0.4.0", + version="0.4.1", description="Keep your passwords behind the firewall", author="Torsten Rehn", author_email="torsten@rehn.email", diff --git a/src/teamvault/__init__.py b/src/teamvault/__init__.py index cf11605..82baaf8 100644 --- a/src/teamvault/__init__.py +++ b/src/teamvault/__init__.py @@ -1,2 +1,2 @@ -VERSION = (0, 4, 0) +VERSION = (0, 4, 1) VERSION_STRING = ".".join([str(v) for v in VERSION])