diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e7b0c29..8994ed9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,14 @@ +0.4.0 +===== + +2015-04-06 + +* changed URLs to use hashids +* added substring search for filename, URL, and username +* added notification emails for access requests +* fixed display of allowed users/group in secret detail view + + 0.3.0 ===== diff --git a/setup.py b/setup.py index 3ced622..881954c 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="teamvault", - version="0.3.0", + version="0.4.0", 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 799f94f..cf11605 100644 --- a/src/teamvault/__init__.py +++ b/src/teamvault/__init__.py @@ -1,2 +1,2 @@ -VERSION = (0, 3, 0) +VERSION = (0, 4, 0) VERSION_STRING = ".".join([str(v) for v in VERSION])