mitmproxy/libmproxy/version.py

9 lines
304 B
Python
Raw Normal View History

2014-11-14 15:18:05 +00:00
IVERSION = (0, 11, 1)
VERSION = ".".join(str(i) for i in IVERSION)
2014-03-19 15:05:19 +00:00
MINORVERSION = ".".join(str(i) for i in IVERSION[:2])
NAME = "mitmproxy"
NAMEVERSION = NAME + " " + VERSION
2014-11-11 11:30:51 +00:00
NEXT_MINORVERSION = list(IVERSION)
NEXT_MINORVERSION[1] += 1
NEXT_MINORVERSION = ".".join(str(i) for i in NEXT_MINORVERSION[:2])