mitmproxy/libpathod/version.py

10 lines
302 B
Python
Raw Normal View History

2014-11-14 23:44:26 +00:00
IVERSION = (0, 11, 1)
2012-04-29 09:30:48 +00:00
VERSION = ".".join(str(i) for i in IVERSION)
MINORVERSION = ".".join(str(i) for i in IVERSION[:2])
2012-04-29 09:30:48 +00:00
NAME = "pathod"
2014-11-11 11:28:08 +00:00
NAMEVERSION = NAME + " " + VERSION
NEXT_MINORVERSION = list(IVERSION)
NEXT_MINORVERSION[1] += 1
2014-11-14 23:44:26 +00:00
NEXT_MINORVERSION = ".".join(str(i) for i in NEXT_MINORVERSION[:2])