Bump to 0.11.1

This commit is contained in:
Aldo Cortesi 2014-11-15 12:44:26 +13:00
parent 63d2403558
commit 295c8340a3
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
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"
@ -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])
NEXT_MINORVERSION = ".".join(str(i) for i in NEXT_MINORVERSION[:2])