API: bump to 2.2 after the addition of Sparc support
diff --git a/bindings/java/capstone/Capstone.java b/bindings/java/capstone/Capstone.java
index 80736c3..5d91f64 100644
--- a/bindings/java/capstone/Capstone.java
+++ b/bindings/java/capstone/Capstone.java
@@ -246,7 +246,7 @@
 
   // 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;
diff --git a/bindings/python/capstone/capstone.py b/bindings/python/capstone/capstone.py
index 0db3c31..d6253dd 100644
--- a/bindings/python/capstone/capstone.py
+++ b/bindings/python/capstone/capstone.py
@@ -63,7 +63,7 @@
 
 # API version
 CS_API_MAJOR = 2
-CS_API_MINOR = 1
+CS_API_MINOR = 2
 
 # architectures
 CS_ARCH_ARM = 0
diff --git a/bindings/python/setup.py b/bindings/python/setup.py
index 5bac19a..d0b5d12 100644
--- a/bindings/python/setup.py
+++ b/bindings/python/setup.py
@@ -2,7 +2,7 @@
 
 from distutils.core import setup
 
-VERSION = '2.1'
+VERSION = '2.2'
 
 # clean package directory first
 import os.path, shutil, sys
diff --git a/bindings/python/setup_cython.py b/bindings/python/setup_cython.py
index b12db0a..ae08798 100644
--- a/bindings/python/setup_cython.py
+++ b/bindings/python/setup_cython.py
@@ -3,7 +3,7 @@
 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']
 
diff --git a/include/capstone.h b/include/capstone.h
index 206c980..08ab018 100644
--- a/include/capstone.h
+++ b/include/capstone.h
@@ -23,7 +23,7 @@
 
 // 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.
diff --git a/pkgconfig.mk b/pkgconfig.mk
index e265e8c..f709f42 100644
--- a/pkgconfig.mk
+++ b/pkgconfig.mk
@@ -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 =