From 5dbc640b9a2dae735fb663ede90f3900ad43f6d5 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Thu, 20 Apr 2017 14:14:24 +0800 Subject: [PATCH] bump UC_VERSION_EXTRA to 1 --- bindings/dotnet/UnicornManaged/Const/Common.fs | 3 +-- bindings/go/unicorn/unicorn_const.go | 3 +-- bindings/java/unicorn/UnicornConst.java | 3 +-- bindings/python/unicorn/unicorn_const.py | 3 +-- bindings/ruby/unicorn_gem/lib/unicorn/unicorn_const.rb | 3 +-- include/unicorn/unicorn.h | 2 +- 6 files changed, 6 insertions(+), 11 deletions(-) diff --git a/bindings/dotnet/UnicornManaged/Const/Common.fs b/bindings/dotnet/UnicornManaged/Const/Common.fs index 8fbc08c0..67a22e17 100644 --- a/bindings/dotnet/UnicornManaged/Const/Common.fs +++ b/bindings/dotnet/UnicornManaged/Const/Common.fs @@ -12,8 +12,7 @@ module Common = let UC_VERSION_MAJOR = 1 let UC_VERSION_MINOR = 0 - - let UC_VERSION_EXTRA = 0 + let UC_VERSION_EXTRA = 1 let UC_SECOND_SCALE = 1000000 let UC_MILISECOND_SCALE = 1000 let UC_ARCH_ARM = 1 diff --git a/bindings/go/unicorn/unicorn_const.go b/bindings/go/unicorn/unicorn_const.go index 9d782142..c5c2441d 100644 --- a/bindings/go/unicorn/unicorn_const.go +++ b/bindings/go/unicorn/unicorn_const.go @@ -7,8 +7,7 @@ const ( VERSION_MAJOR = 1 VERSION_MINOR = 0 - - VERSION_EXTRA = 0 + VERSION_EXTRA = 1 SECOND_SCALE = 1000000 MILISECOND_SCALE = 1000 ARCH_ARM = 1 diff --git a/bindings/java/unicorn/UnicornConst.java b/bindings/java/unicorn/UnicornConst.java index 9dd4d669..3002281a 100644 --- a/bindings/java/unicorn/UnicornConst.java +++ b/bindings/java/unicorn/UnicornConst.java @@ -9,8 +9,7 @@ public interface UnicornConst { public static final int UC_VERSION_MAJOR = 1; public static final int UC_VERSION_MINOR = 0; - - public static final int UC_VERSION_EXTRA = 0; + public static final int UC_VERSION_EXTRA = 1; public static final int UC_SECOND_SCALE = 1000000; public static final int UC_MILISECOND_SCALE = 1000; public static final int UC_ARCH_ARM = 1; diff --git a/bindings/python/unicorn/unicorn_const.py b/bindings/python/unicorn/unicorn_const.py index 32201f68..7e7ab0e5 100644 --- a/bindings/python/unicorn/unicorn_const.py +++ b/bindings/python/unicorn/unicorn_const.py @@ -5,8 +5,7 @@ UC_API_MINOR = 0 UC_VERSION_MAJOR = 1 UC_VERSION_MINOR = 0 - -UC_VERSION_EXTRA = 0 +UC_VERSION_EXTRA = 1 UC_SECOND_SCALE = 1000000 UC_MILISECOND_SCALE = 1000 UC_ARCH_ARM = 1 diff --git a/bindings/ruby/unicorn_gem/lib/unicorn/unicorn_const.rb b/bindings/ruby/unicorn_gem/lib/unicorn/unicorn_const.rb index 81068a6e..8848e1d3 100644 --- a/bindings/ruby/unicorn_gem/lib/unicorn/unicorn_const.rb +++ b/bindings/ruby/unicorn_gem/lib/unicorn/unicorn_const.rb @@ -7,8 +7,7 @@ module Unicorn UC_VERSION_MAJOR = 1 UC_VERSION_MINOR = 0 - - UC_VERSION_EXTRA = 0 + UC_VERSION_EXTRA = 1 UC_SECOND_SCALE = 1000000 UC_MILISECOND_SCALE = 1000 UC_ARCH_ARM = 1 diff --git a/include/unicorn/unicorn.h b/include/unicorn/unicorn.h index 40cb9930..04e6a773 100644 --- a/include/unicorn/unicorn.h +++ b/include/unicorn/unicorn.h @@ -70,7 +70,7 @@ typedef size_t uc_hook; // Unicorn package version #define UC_VERSION_MAJOR UC_API_MAJOR #define UC_VERSION_MINOR UC_API_MINOR -#define UC_VERSION_EXTRA 0 +#define UC_VERSION_EXTRA 1 /*