From 867940ae8067156c3446e9692c1926a58dbd193f Mon Sep 17 00:00:00 2001 From: "gergely.erdelyi" Date: Mon, 19 Jan 2009 19:38:02 +0000 Subject: [PATCH] build.py: Version bumped to 1.0.51 build.py: Default SDK version changed to 5.4 --- build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.py b/build.py index db388b2..f41a67b 100644 --- a/build.py +++ b/build.py @@ -22,14 +22,14 @@ from distutils import sysconfig # Start of user configurable options VERBOSE = True IDA_MAJOR_VERSION = 5 -IDA_MINOR_VERSION = 3 +IDA_MINOR_VERSION = 4 IDA_SDK = ".." + os.sep + "swigsdk-versions" + os.sep + "%d.%d" % (IDA_MAJOR_VERSION, IDA_MINOR_VERSION) # End of user configurable options # IDAPython version VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_PATCH = 50 +VERSION_PATCH = 51 # Determine Python version PYTHON_MAJOR_VERSION = int(platform.python_version()[0])