From c10639fd4658a852049546162d116b123e2b1ec2 Mon Sep 17 00:00:00 2001 From: lazymio Date: Sun, 13 Feb 2022 11:03:57 +0100 Subject: [PATCH] Bump version in bindings --- bindings/dotnet/UnicornManaged/Const/Common.fs | 5 +++-- bindings/go/unicorn/unicorn_const.go | 5 +++-- bindings/java/unicorn/UnicornConst.java | 5 +++-- bindings/pascal/unicorn/UnicornConst.pas | 5 +++-- bindings/python/unicorn/unicorn_const.py | 5 +++-- .../ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb | 5 +++-- 6 files changed, 18 insertions(+), 12 deletions(-) diff --git a/bindings/dotnet/UnicornManaged/Const/Common.fs b/bindings/dotnet/UnicornManaged/Const/Common.fs index a8b85414f4..9134f90605 100644 --- a/bindings/dotnet/UnicornManaged/Const/Common.fs +++ b/bindings/dotnet/UnicornManaged/Const/Common.fs @@ -11,13 +11,13 @@ module Common = let UC_API_MINOR = 0 let UC_API_PATCH = 0 - let UC_API_EXTRA = 5 + let UC_API_EXTRA = 6 let UC_VERSION_MAJOR = 2 let UC_VERSION_MINOR = 0 let UC_VERSION_PATCH = 0 - let UC_VERSION_EXTRA = 5 + let UC_VERSION_EXTRA = 6 let UC_SECOND_SCALE = 1000000 let UC_MILISECOND_SCALE = 1000 let UC_ARCH_ARM = 1 @@ -38,6 +38,7 @@ module Common = let UC_MODE_THUMB = 16 let UC_MODE_MCLASS = 32 let UC_MODE_V8 = 64 + let UC_MODE_ARMBE8 = 128 let UC_MODE_ARM926 = 128 let UC_MODE_ARM946 = 256 let UC_MODE_ARM1176 = 512 diff --git a/bindings/go/unicorn/unicorn_const.go b/bindings/go/unicorn/unicorn_const.go index 052cdd1da9..c0dcfa283d 100644 --- a/bindings/go/unicorn/unicorn_const.go +++ b/bindings/go/unicorn/unicorn_const.go @@ -6,13 +6,13 @@ const ( API_MINOR = 0 API_PATCH = 0 - API_EXTRA = 5 + API_EXTRA = 6 VERSION_MAJOR = 2 VERSION_MINOR = 0 VERSION_PATCH = 0 - VERSION_EXTRA = 5 + VERSION_EXTRA = 6 SECOND_SCALE = 1000000 MILISECOND_SCALE = 1000 ARCH_ARM = 1 @@ -33,6 +33,7 @@ const ( MODE_THUMB = 16 MODE_MCLASS = 32 MODE_V8 = 64 + MODE_ARMBE8 = 128 MODE_ARM926 = 128 MODE_ARM946 = 256 MODE_ARM1176 = 512 diff --git a/bindings/java/unicorn/UnicornConst.java b/bindings/java/unicorn/UnicornConst.java index 4d8554f63a..cc2b66d378 100644 --- a/bindings/java/unicorn/UnicornConst.java +++ b/bindings/java/unicorn/UnicornConst.java @@ -8,13 +8,13 @@ public interface UnicornConst { public static final int UC_API_MINOR = 0; public static final int UC_API_PATCH = 0; - public static final int UC_API_EXTRA = 5; + public static final int UC_API_EXTRA = 6; public static final int UC_VERSION_MAJOR = 2; public static final int UC_VERSION_MINOR = 0; public static final int UC_VERSION_PATCH = 0; - public static final int UC_VERSION_EXTRA = 5; + public static final int UC_VERSION_EXTRA = 6; public static final int UC_SECOND_SCALE = 1000000; public static final int UC_MILISECOND_SCALE = 1000; public static final int UC_ARCH_ARM = 1; @@ -35,6 +35,7 @@ public interface UnicornConst { public static final int UC_MODE_THUMB = 16; public static final int UC_MODE_MCLASS = 32; public static final int UC_MODE_V8 = 64; + public static final int UC_MODE_ARMBE8 = 128; public static final int UC_MODE_ARM926 = 128; public static final int UC_MODE_ARM946 = 256; public static final int UC_MODE_ARM1176 = 512; diff --git a/bindings/pascal/unicorn/UnicornConst.pas b/bindings/pascal/unicorn/UnicornConst.pas index 4ae08515a5..5306d8f85d 100644 --- a/bindings/pascal/unicorn/UnicornConst.pas +++ b/bindings/pascal/unicorn/UnicornConst.pas @@ -9,13 +9,13 @@ interface UC_API_MINOR = 0; UC_API_PATCH = 0; - UC_API_EXTRA = 5; + UC_API_EXTRA = 6; UC_VERSION_MAJOR = 2; UC_VERSION_MINOR = 0; UC_VERSION_PATCH = 0; - UC_VERSION_EXTRA = 5; + UC_VERSION_EXTRA = 6; UC_SECOND_SCALE = 1000000; UC_MILISECOND_SCALE = 1000; UC_ARCH_ARM = 1; @@ -36,6 +36,7 @@ interface UC_MODE_THUMB = 16; UC_MODE_MCLASS = 32; UC_MODE_V8 = 64; + UC_MODE_ARMBE8 = 128; UC_MODE_ARM926 = 128; UC_MODE_ARM946 = 256; UC_MODE_ARM1176 = 512; diff --git a/bindings/python/unicorn/unicorn_const.py b/bindings/python/unicorn/unicorn_const.py index 1737a2c8ec..573a043c8f 100644 --- a/bindings/python/unicorn/unicorn_const.py +++ b/bindings/python/unicorn/unicorn_const.py @@ -4,13 +4,13 @@ UC_API_MINOR = 0 UC_API_PATCH = 0 -UC_API_EXTRA = 5 +UC_API_EXTRA = 6 UC_VERSION_MAJOR = 2 UC_VERSION_MINOR = 0 UC_VERSION_PATCH = 0 -UC_VERSION_EXTRA = 5 +UC_VERSION_EXTRA = 6 UC_SECOND_SCALE = 1000000 UC_MILISECOND_SCALE = 1000 UC_ARCH_ARM = 1 @@ -31,6 +31,7 @@ UC_MODE_THUMB = 16 UC_MODE_MCLASS = 32 UC_MODE_V8 = 64 +UC_MODE_ARMBE8 = 128 UC_MODE_ARM926 = 128 UC_MODE_ARM946 = 256 UC_MODE_ARM1176 = 512 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 e12c7be43c..794bc16bff 100644 --- a/bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb +++ b/bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb @@ -6,13 +6,13 @@ module UnicornEngine UC_API_MINOR = 0 UC_API_PATCH = 0 - UC_API_EXTRA = 5 + UC_API_EXTRA = 6 UC_VERSION_MAJOR = 2 UC_VERSION_MINOR = 0 UC_VERSION_PATCH = 0 - UC_VERSION_EXTRA = 5 + UC_VERSION_EXTRA = 6 UC_SECOND_SCALE = 1000000 UC_MILISECOND_SCALE = 1000 UC_ARCH_ARM = 1 @@ -33,6 +33,7 @@ module UnicornEngine UC_MODE_THUMB = 16 UC_MODE_MCLASS = 32 UC_MODE_V8 = 64 + UC_MODE_ARMBE8 = 128 UC_MODE_ARM926 = 128 UC_MODE_ARM946 = 256 UC_MODE_ARM1176 = 512