diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d3fb1a74..b528c85b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,13 @@ +0.4.3 +===== + +2015-05-25 + +* show username field by default when adding passwords +* fixed `teamvault upgrade` missing update_search_field +* fixed typing in secret sharing modal + + 0.4.2 ===== diff --git a/setup.py b/setup.py index b21c0135..5a8b9a39 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="teamvault", - version="0.4.2", + version="0.4.3", 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 81c09d4c..66109c32 100644 --- a/src/teamvault/__init__.py +++ b/src/teamvault/__init__.py @@ -1,2 +1,2 @@ -VERSION = (0, 4, 2) +VERSION = (0, 4, 3) VERSION_STRING = ".".join([str(v) for v in VERSION])