bump API & package version to 3.0

This commit is contained in:
Nguyen Anh Quynh 2014-08-13 14:15:27 +08:00
parent b1a2d015c9
commit fd0f798343
6 changed files with 10 additions and 10 deletions

View File

@ -262,8 +262,8 @@ public class Capstone {
}
// Capstone API version
public static final int CS_API_MAJOR = 2;
public static final int CS_API_MINOR = 2;
public static final int CS_API_MAJOR = 3;
public static final int CS_API_MINOR = 0;
// architectures
public static final int CS_ARCH_ARM = 0;

View File

@ -74,8 +74,8 @@ __all__ = [
# Capstone C interface
# API version
CS_API_MAJOR = 2
CS_API_MINOR = 2
CS_API_MAJOR = 3
CS_API_MINOR = 0
# architectures
CS_ARCH_ARM = 0

View File

@ -2,7 +2,7 @@
from distutils.core import setup
VERSION = '2.2'
VERSION = '3.0'
# clean package directory first
#import os.path, shutil, sys

View File

@ -3,7 +3,7 @@ from distutils.extension import Extension
from distutils.command.install_lib import install_lib as _install
from Cython.Distutils import build_ext
VERSION = '2.2'
VERSION = '3.0'
compile_args = ['-O3', '-fomit-frame-pointer']

View File

@ -28,8 +28,8 @@ extern "C" {
#endif
// Capstone API version
#define CS_API_MAJOR 2
#define CS_API_MINOR 2
#define CS_API_MAJOR 3
#define CS_API_MINOR 0
// Macro to create combined version which can be compared to
// result of cs_version() API.

View File

@ -2,8 +2,8 @@
# To be used to generate capstone.pc for pkg-config
# version major & minor
PKG_MAJOR = 2
PKG_MINOR = 2
PKG_MAJOR = 3
PKG_MINOR = 0
# version bugfix level. Example: PKG_EXTRA = 1
PKG_EXTRA =