mitmproxy/netlib/version.py
2015-08-17 10:21:30 +12:00

12 lines
370 B
Python

from __future__ import (absolute_import, print_function, division)
IVERSION = (0, 13, 2)
VERSION = ".".join(str(i) for i in IVERSION)
MINORVERSION = ".".join(str(i) for i in IVERSION[:2])
NAME = "netlib"
NAMEVERSION = NAME + " " + VERSION
NEXT_MINORVERSION = list(IVERSION)
NEXT_MINORVERSION[1] += 1
NEXT_MINORVERSION = ".".join(str(i) for i in NEXT_MINORVERSION[:2])