mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
bump version
This commit is contained in:
parent
deb7844004
commit
c22b14fae7
@ -40,11 +40,17 @@ def convert_016_017(data):
|
|||||||
return data
|
return data
|
||||||
|
|
||||||
|
|
||||||
|
def convert_017_018(data):
|
||||||
|
data["version"] = (0, 18)
|
||||||
|
return data
|
||||||
|
|
||||||
|
|
||||||
converters = {
|
converters = {
|
||||||
(0, 13): convert_013_014,
|
(0, 13): convert_013_014,
|
||||||
(0, 14): convert_014_015,
|
(0, 14): convert_014_015,
|
||||||
(0, 15): convert_015_016,
|
(0, 15): convert_015_016,
|
||||||
(0, 16): convert_016_017,
|
(0, 16): convert_016_017,
|
||||||
|
(0, 17): convert_017_018,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
from __future__ import (absolute_import, print_function, division)
|
from __future__ import (absolute_import, print_function, division)
|
||||||
|
|
||||||
IVERSION = (0, 17)
|
IVERSION = (0, 18)
|
||||||
VERSION = ".".join(str(i) for i in IVERSION)
|
VERSION = ".".join(str(i) for i in IVERSION)
|
||||||
NAME = "netlib"
|
NAME = "netlib"
|
||||||
NAMEVERSION = NAME + " " + VERSION
|
NAMEVERSION = NAME + " " + VERSION
|
||||||
|
Loading…
Reference in New Issue
Block a user