aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/version.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2015-03-14 11:21:32 +1100
committerAldo Cortesi <aldo@nullcube.com>2015-03-14 11:21:32 +1100
commit2e64d44aabc41ee93c0a682ce35b34a8716d3b8d (patch)
tree62ce244987b715d9e9261bea86bd0e8a6c69a77f /libpathod/version.py
parent7caf0e4dce604ef7d76a8cff1e49d0414306dfb3 (diff)
parent295c8340a39f48652f77d74f3f65bfcec19a5c34 (diff)
downloadmitmproxy-2e64d44aabc41ee93c0a682ce35b34a8716d3b8d.tar.gz
mitmproxy-2e64d44aabc41ee93c0a682ce35b34a8716d3b8d.tar.bz2
mitmproxy-2e64d44aabc41ee93c0a682ce35b34a8716d3b8d.zip
Merge branch 'master' of ssh.github.com:mitmproxy/pathod
Diffstat (limited to 'libpathod/version.py')
-rw-r--r--libpathod/version.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/libpathod/version.py b/libpathod/version.py
index ad539392..5f7675e2 100644
--- a/libpathod/version.py
+++ b/libpathod/version.py
@@ -1,5 +1,9 @@
-IVERSION = (0, 11)
+IVERSION = (0, 11, 1)
VERSION = ".".join(str(i) for i in IVERSION)
MINORVERSION = ".".join(str(i) for i in IVERSION[:2])
NAME = "pathod"
-NAMEVERSION = NAME + " " + VERSION \ No newline at end of file
+NAMEVERSION = NAME + " " + VERSION
+
+NEXT_MINORVERSION = list(IVERSION)
+NEXT_MINORVERSION[1] += 1
+NEXT_MINORVERSION = ".".join(str(i) for i in NEXT_MINORVERSION[:2])