mitmproxy/libmproxy/version.py

12 lines
370 B
Python
Raw Normal View History

2015-07-21 22:16:38 +00:00
from __future__ import (absolute_import, print_function, division)
2015-12-03 17:13:24 +00:00
IVERSION = (0, 15)
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])