diff options
Diffstat (limited to 'client/src/leap/soledad')
-rw-r--r-- | client/src/leap/soledad/client/_version.py | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/client/src/leap/soledad/client/_version.py b/client/src/leap/soledad/client/_version.py index 3c208ef4..ebc8925f 100644 --- a/client/src/leap/soledad/client/_version.py +++ b/client/src/leap/soledad/client/_version.py @@ -5,10 +5,17 @@ # unpacked source archive. Distribution tarballs contain a pre-generated copy # of this file. -version_version = '0.8.0' -full_revisionid = 'f25d2e4fa3b51575f4989ac74eade7213966ce4b' +import json +import sys +version_json = ''' +{ + "dirty": false, + "error": null, + "full-revisionid": "91cbf6c084569a24c4186f3ff745448d3c51756a", + "version": "0.8.0" +} +''' # END VERSION_JSON -def get_versions(default={}, verbose=False): - return {'version': version_version, - 'full-revisionid': full_revisionid} +def get_versions(): + return json.loads(version_json) |