Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mhils committed Apr 10, 2016
1 parent deb7844 commit c22b14f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions mitmproxy/flow_format_compat.py
Expand Up @@ -40,11 +40,17 @@ def convert_016_017(data):
return data


def convert_017_018(data):
data["version"] = (0, 18)
return data


converters = {
(0, 13): convert_013_014,
(0, 14): convert_014_015,
(0, 15): convert_015_016,
(0, 16): convert_016_017,
(0, 17): convert_017_018,
}


Expand Down
2 changes: 1 addition & 1 deletion netlib/version.py
@@ -1,6 +1,6 @@
from __future__ import (absolute_import, print_function, division)

IVERSION = (0, 17)
IVERSION = (0, 18)

This comment has been minimized.

Copy link
@Kriechi

Kriechi Apr 11, 2016

Member

why do we still have a netlib version file?

This comment has been minimized.

Copy link
@mhils

mhils Apr 12, 2016

Author Member

Because pathod and mitmproxy source this from here. There shouldn't be cross-dependencies between the two.

This comment has been minimized.

Copy link
@Kriechi

Kriechi Apr 12, 2016

Member

Seems strange to me that this file is in netlib/. Maybe we should move it to mitmproxy/ or /?

VERSION = ".".join(str(i) for i in IVERSION)
NAME = "netlib"
NAMEVERSION = NAME + " " + VERSION

0 comments on commit c22b14f

Please sign in to comment.