mirror of
https://github.com/capstone-engine/capstone.git
synced 2025-02-01 11:36:36 +00:00
bump API & package version to 3.0
This commit is contained in:
parent
b1a2d015c9
commit
fd0f798343
@ -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;
|
||||
|
@ -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
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
from distutils.core import setup
|
||||
|
||||
VERSION = '2.2'
|
||||
VERSION = '3.0'
|
||||
|
||||
# clean package directory first
|
||||
#import os.path, shutil, sys
|
||||
|
@ -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']
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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 =
|
||||
|
Loading…
x
Reference in New Issue
Block a user