diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f2f5be..0b7b618 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.9.2 + +2021-02-08 + +* follow deeplinks after Google login + + # 0.9.1 2021-02-01 diff --git a/setup.py b/setup.py index c29c381..c703a75 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="teamvault", - version="0.9.1", + version="0.9.2", description="Keep your passwords behind the firewall", author="//SEIBERT/MEDIA GmbH", license="GPLv3", diff --git a/teamvault/__init__.py b/teamvault/__init__.py index 81eb3f5..76ae5ba 100644 --- a/teamvault/__init__.py +++ b/teamvault/__init__.py @@ -1,2 +1,2 @@ -VERSION = (0, 9, 1) +VERSION = (0, 9, 2) VERSION_STRING = ".".join([str(v) for v in VERSION])