From c25f1a01211ec597773027ef9f1cec3b0904fefe Mon Sep 17 00:00:00 2001 From: "gergely.erdelyi" Date: Sun, 12 Jul 2009 15:20:51 +0000 Subject: [PATCH] build.py: Version bumped to 1.2.0 --- build.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.py b/build.py index a7ddd2f..cc7b2fb 100644 --- a/build.py +++ b/build.py @@ -22,15 +22,15 @@ from distutils import sysconfig # Start of user configurable options VERBOSE = True IDA_MAJOR_VERSION = 5 -IDA_MINOR_VERSION = 5 +IDA_MINOR_VERSION = 4 IDA_SDK = ".." + os.sep + "swigsdk-versions" + os.sep + "%d.%d" % (IDA_MAJOR_VERSION, IDA_MINOR_VERSION) #IDA_SDK = ".." + os.sep + ".." # End of user configurable options # IDAPython version VERSION_MAJOR = 1 -VERSION_MINOR = 1 -VERSION_PATCH = 92 +VERSION_MINOR = 2 +VERSION_PATCH = 0 # Determine Python version PYTHON_MAJOR_VERSION = int(platform.python_version()[0])