aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/version.py
blob: 3cae2a048e3f33d4c4ccebffd4c995095a3c6169 (plain)
1
2
3
4
5
6
7
8
9
10
11
IVERSION = (3, 0, 0)
VERSION = ".".join(str(i) for i in IVERSION)
PATHOD = "pathod " + VERSION
MITMPROXY = "mitmproxy " + VERSION

# Serialization format version. This is displayed nowhere, it just needs to be incremented by one
# for each change in the file format.
FLOW_FORMAT_VERSION = 5

if __name__ == "__main__":
    print(VERSION)