API: bump to 2.2 after the addition of Sparc support

v2
Nguyen Anh Quynh 11 years ago
parent 897c2ccf18
commit 1a39bb59e1
  1. 2
      bindings/java/capstone/Capstone.java
  2. 2
      bindings/python/capstone/capstone.py
  3. 2
      bindings/python/setup.py
  4. 2
      bindings/python/setup_cython.py
  5. 2
      include/capstone.h
  6. 2
      pkgconfig.mk

@ -246,7 +246,7 @@ public class Capstone {
// Capstone API version
public static final int CS_API_MAJOR = 2;
public static final int CS_API_MINOR = 1;
public static final int CS_API_MINOR = 2;
// architectures
public static final int CS_ARCH_ARM = 0;

@ -63,7 +63,7 @@ __all__ = [
# API version
CS_API_MAJOR = 2
CS_API_MINOR = 1
CS_API_MINOR = 2
# architectures
CS_ARCH_ARM = 0

@ -2,7 +2,7 @@
from distutils.core import setup
VERSION = '2.1'
VERSION = '2.2'
# 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.1'
VERSION = '2.2'
compile_args = ['-O3', '-fomit-frame-pointer']

@ -23,7 +23,7 @@ extern "C" {
// Capstone API version
#define CS_API_MAJOR 2
#define CS_API_MINOR 1
#define CS_API_MINOR 2
// Macro to create combined version which can be compared to
// result of cs_version() API.

@ -3,7 +3,7 @@
# version major & minor
PKG_MAJOR = 2
PKG_MINOR = 1
PKG_MINOR = 2
# version bugfix level. Example: PKG_EXTRA = 1
PKG_EXTRA =

Loading…
Cancel
Save