diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2014-12-30 10:02:45 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2014-12-30 10:02:45 +1300 |
commit | 089c5fd9480754d38e16eb03977c066d5de9aee0 (patch) | |
tree | c2945349c38b706a780f780c68b47066f1fccc7c /libmproxy | |
parent | 333688b06ee029e809c2a7d10690c785e805f432 (diff) | |
download | mitmproxy-089c5fd9480754d38e16eb03977c066d5de9aee0.tar.gz mitmproxy-089c5fd9480754d38e16eb03977c066d5de9aee0.tar.bz2 mitmproxy-089c5fd9480754d38e16eb03977c066d5de9aee0.zip |
Bump version
Diffstat (limited to 'libmproxy')
-rw-r--r-- | libmproxy/version.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmproxy/version.py b/libmproxy/version.py index 0320f4cf..92362afa 100644 --- a/libmproxy/version.py +++ b/libmproxy/version.py @@ -1,4 +1,4 @@ -IVERSION = (0, 11, 2) +IVERSION = (0, 11, 3) VERSION = ".".join(str(i) for i in IVERSION) MINORVERSION = ".".join(str(i) for i in IVERSION[:2]) NAME = "mitmproxy" @@ -6,4 +6,4 @@ NAMEVERSION = NAME + " " + VERSION NEXT_MINORVERSION = list(IVERSION) NEXT_MINORVERSION[1] += 1 -NEXT_MINORVERSION = ".".join(str(i) for i in NEXT_MINORVERSION[:2])
\ No newline at end of file +NEXT_MINORVERSION = ".".join(str(i) for i in NEXT_MINORVERSION[:2]) |