From 09d14704a5f6d2e8ffbdf5137a6f15dcefb14204 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Tue, 25 Apr 2017 12:41:00 +0800 Subject: [PATCH] bindings: update after UC_VERSION_EXTRA change --- bindings/dotnet/UnicornManaged/Const/Common.fs | 2 +- bindings/go/unicorn/unicorn_const.go | 2 +- bindings/java/unicorn/UnicornConst.java | 2 +- bindings/python/unicorn/unicorn_const.py | 2 +- bindings/ruby/unicorn_gem/lib/unicorn/unicorn_const.rb | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bindings/dotnet/UnicornManaged/Const/Common.fs b/bindings/dotnet/UnicornManaged/Const/Common.fs index 67a22e17..d5f9b986 100644 --- a/bindings/dotnet/UnicornManaged/Const/Common.fs +++ b/bindings/dotnet/UnicornManaged/Const/Common.fs @@ -12,7 +12,7 @@ module Common = let UC_VERSION_MAJOR = 1 let UC_VERSION_MINOR = 0 - let UC_VERSION_EXTRA = 1 + let UC_VERSION_EXTRA = 2 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 c5c2441d..f0214809 100644 --- a/bindings/go/unicorn/unicorn_const.go +++ b/bindings/go/unicorn/unicorn_const.go @@ -7,7 +7,7 @@ const ( VERSION_MAJOR = 1 VERSION_MINOR = 0 - VERSION_EXTRA = 1 + VERSION_EXTRA = 2 SECOND_SCALE = 1000000 MILISECOND_SCALE = 1000 ARCH_ARM = 1 diff --git a/bindings/java/unicorn/UnicornConst.java b/bindings/java/unicorn/UnicornConst.java index 3002281a..c83ac9d8 100644 --- a/bindings/java/unicorn/UnicornConst.java +++ b/bindings/java/unicorn/UnicornConst.java @@ -9,7 +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 = 1; + public static final int UC_VERSION_EXTRA = 2; 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 7e7ab0e5..35d0a5ef 100644 --- a/bindings/python/unicorn/unicorn_const.py +++ b/bindings/python/unicorn/unicorn_const.py @@ -5,7 +5,7 @@ UC_API_MINOR = 0 UC_VERSION_MAJOR = 1 UC_VERSION_MINOR = 0 -UC_VERSION_EXTRA = 1 +UC_VERSION_EXTRA = 2 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 8848e1d3..2d5d77a0 100644 --- a/bindings/ruby/unicorn_gem/lib/unicorn/unicorn_const.rb +++ b/bindings/ruby/unicorn_gem/lib/unicorn/unicorn_const.rb @@ -7,7 +7,7 @@ module Unicorn UC_VERSION_MAJOR = 1 UC_VERSION_MINOR = 0 - UC_VERSION_EXTRA = 1 + UC_VERSION_EXTRA = 2 UC_SECOND_SCALE = 1000000 UC_MILISECOND_SCALE = 1000 UC_ARCH_ARM = 1