mitmproxy/libmproxy/version.py

10 lines
305 B
Python
Raw Normal View History

2014-12-29 22:26:45 +00:00
IVERSION = (0, 11, 4)
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
2014-12-29 21:02:45 +00:00
NEXT_MINORVERSION = ".".join(str(i) for i in NEXT_MINORVERSION[:2])