From a611c7de34b2523628483f7421a01ab3d54e3e61 Mon Sep 17 00:00:00 2001 From: Arinerron Date: Sat, 19 May 2018 15:27:26 -0700 Subject: [PATCH] Add tuple of onionr version --- onionr/onionr.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/onionr/onionr.py b/onionr/onionr.py index bc33e8fb..d4d7e3ea 100755 --- a/onionr/onionr.py +++ b/onionr/onionr.py @@ -38,7 +38,8 @@ except ImportError: raise Exception("You need the PySocks module (for use with socks5 proxy to use Tor)") ONIONR_TAGLINE = 'Anonymous P2P Platform - GPLv3 - https://Onionr.VoidNet.Tech' -ONIONR_VERSION = '0.0.0' # for debugging and stuff +ONIONR_VERSION = '0.1.0' # for debugging and stuff +ONIONR_VERSION_TUPLE = tuple(ONIONR_VERSION.split('.')) # (MAJOR, MINOR, VERSION) API_VERSION = '2' # increments of 1; only change when something fundemental about how the API works changes. This way other nodes knows how to communicate without learning too much information about you. class Onionr: