mitmproxy/netlib/version.py

12 lines
370 B
Python
Raw Normal View History

2014-08-16 13:53:07 +00:00
from __future__ import (absolute_import, print_function, division)
2015-05-25 22:43:28 +00:00
IVERSION = (0, 12, 1)
2012-06-23 01:49:57 +00:00
VERSION = ".".join(str(i) for i in IVERSION)
2014-06-25 18:31:10 +00:00
MINORVERSION = ".".join(str(i) for i in IVERSION[:2])
2012-06-23 01:49:57 +00:00
NAME = "netlib"
NAMEVERSION = NAME + " " + VERSION
2014-11-11 11:26:20 +00:00
NEXT_MINORVERSION = list(IVERSION)
NEXT_MINORVERSION[1] += 1
2014-11-14 23:45:06 +00:00
NEXT_MINORVERSION = ".".join(str(i) for i in NEXT_MINORVERSION[:2])