bump version

This commit is contained in:
Maximilian Hils 2016-04-09 20:01:24 -07:00
parent deb7844004
commit c22b14fae7
2 changed files with 7 additions and 1 deletions

View File

@ -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,
}

View File

@ -1,6 +1,6 @@
from __future__ import (absolute_import, print_function, division)
IVERSION = (0, 17)
IVERSION = (0, 18)
VERSION = ".".join(str(i) for i in IVERSION)
NAME = "netlib"
NAMEVERSION = NAME + " " + VERSION