diff --git a/bindings/dotnet/UnicornManaged/Const/Common.fs b/bindings/dotnet/UnicornManaged/Const/Common.fs index 72b5cb3a..d6b92eae 100644 --- a/bindings/dotnet/UnicornManaged/Const/Common.fs +++ b/bindings/dotnet/UnicornManaged/Const/Common.fs @@ -9,13 +9,13 @@ module Common = let UC_API_MAJOR = 2 let UC_API_MINOR = 0 - let UC_API_PATCH = 1 - let UC_API_EXTRA = 255 + let UC_API_PATCH = 2 + let UC_API_EXTRA = 1 let UC_VERSION_MAJOR = 2 let UC_VERSION_MINOR = 0 - let UC_VERSION_PATCH = 1 - let UC_VERSION_EXTRA = 255 + let UC_VERSION_PATCH = 2 + 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 19268ce5..34c97b4a 100644 --- a/bindings/go/unicorn/unicorn_const.go +++ b/bindings/go/unicorn/unicorn_const.go @@ -4,13 +4,13 @@ const ( API_MAJOR = 2 API_MINOR = 0 - API_PATCH = 1 - API_EXTRA = 255 + API_PATCH = 2 + API_EXTRA = 1 VERSION_MAJOR = 2 VERSION_MINOR = 0 - VERSION_PATCH = 1 - VERSION_EXTRA = 255 + VERSION_PATCH = 2 + 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 62759ba6..e63afb79 100644 --- a/bindings/java/unicorn/UnicornConst.java +++ b/bindings/java/unicorn/UnicornConst.java @@ -6,13 +6,13 @@ public interface UnicornConst { public static final int UC_API_MAJOR = 2; public static final int UC_API_MINOR = 0; - public static final int UC_API_PATCH = 1; - public static final int UC_API_EXTRA = 255; + public static final int UC_API_PATCH = 2; + public static final int UC_API_EXTRA = 1; public static final int UC_VERSION_MAJOR = 2; public static final int UC_VERSION_MINOR = 0; - public static final int UC_VERSION_PATCH = 1; - public static final int UC_VERSION_EXTRA = 255; + public static final int UC_VERSION_PATCH = 2; + 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/pascal/unicorn/UnicornConst.pas b/bindings/pascal/unicorn/UnicornConst.pas index 26896d13..2d75d4ae 100644 --- a/bindings/pascal/unicorn/UnicornConst.pas +++ b/bindings/pascal/unicorn/UnicornConst.pas @@ -7,13 +7,13 @@ interface const UC_API_MAJOR = 2; UC_API_MINOR = 0; - UC_API_PATCH = 1; - UC_API_EXTRA = 255; + UC_API_PATCH = 2; + UC_API_EXTRA = 1; UC_VERSION_MAJOR = 2; UC_VERSION_MINOR = 0; - UC_VERSION_PATCH = 1; - UC_VERSION_EXTRA = 255; + UC_VERSION_PATCH = 2; + UC_VERSION_EXTRA = 1; UC_SECOND_SCALE = 1000000; UC_MILISECOND_SCALE = 1000; UC_ARCH_ARM = 1; diff --git a/bindings/python/unicorn/unicorn_const.py b/bindings/python/unicorn/unicorn_const.py index f491dd26..96f2949b 100644 --- a/bindings/python/unicorn/unicorn_const.py +++ b/bindings/python/unicorn/unicorn_const.py @@ -2,13 +2,13 @@ UC_API_MAJOR = 2 UC_API_MINOR = 0 -UC_API_PATCH = 1 -UC_API_EXTRA = 255 +UC_API_PATCH = 2 +UC_API_EXTRA = 1 UC_VERSION_MAJOR = 2 UC_VERSION_MINOR = 0 -UC_VERSION_PATCH = 1 -UC_VERSION_EXTRA = 255 +UC_VERSION_PATCH = 2 +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_engine/unicorn_const.rb b/bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb index e317589e..6dbc46e0 100644 --- a/bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb +++ b/bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb @@ -4,13 +4,13 @@ module UnicornEngine UC_API_MAJOR = 2 UC_API_MINOR = 0 - UC_API_PATCH = 1 - UC_API_EXTRA = 255 + UC_API_PATCH = 2 + UC_API_EXTRA = 1 UC_VERSION_MAJOR = 2 UC_VERSION_MINOR = 0 - UC_VERSION_PATCH = 1 - UC_VERSION_EXTRA = 255 + UC_VERSION_PATCH = 2 + UC_VERSION_EXTRA = 1 UC_SECOND_SCALE = 1000000 UC_MILISECOND_SCALE = 1000 UC_ARCH_ARM = 1