diff --git a/bindings/dotnet/UnicornManaged/Const/Common.fs b/bindings/dotnet/UnicornManaged/Const/Common.fs index af230df4..72b5cb3a 100644 --- a/bindings/dotnet/UnicornManaged/Const/Common.fs +++ b/bindings/dotnet/UnicornManaged/Const/Common.fs @@ -9,14 +9,12 @@ module Common = let UC_API_MAJOR = 2 let UC_API_MINOR = 0 - - let UC_API_PATCH = 0 + let UC_API_PATCH = 1 let UC_API_EXTRA = 255 let UC_VERSION_MAJOR = 2 let UC_VERSION_MINOR = 0 - - let UC_VERSION_PATCH = 0 + let UC_VERSION_PATCH = 1 let UC_VERSION_EXTRA = 255 let UC_SECOND_SCALE = 1000000 let UC_MILISECOND_SCALE = 1000 diff --git a/bindings/go/unicorn/unicorn_const.go b/bindings/go/unicorn/unicorn_const.go index 107ef745..19268ce5 100644 --- a/bindings/go/unicorn/unicorn_const.go +++ b/bindings/go/unicorn/unicorn_const.go @@ -4,14 +4,12 @@ const ( API_MAJOR = 2 API_MINOR = 0 - - API_PATCH = 0 + API_PATCH = 1 API_EXTRA = 255 VERSION_MAJOR = 2 VERSION_MINOR = 0 - - VERSION_PATCH = 0 + VERSION_PATCH = 1 VERSION_EXTRA = 255 SECOND_SCALE = 1000000 MILISECOND_SCALE = 1000 diff --git a/bindings/java/unicorn/UnicornConst.java b/bindings/java/unicorn/UnicornConst.java index 04fb15dd..62759ba6 100644 --- a/bindings/java/unicorn/UnicornConst.java +++ b/bindings/java/unicorn/UnicornConst.java @@ -6,14 +6,12 @@ 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 = 0; + public static final int UC_API_PATCH = 1; public static final int UC_API_EXTRA = 255; 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_PATCH = 1; public static final int UC_VERSION_EXTRA = 255; public static final int UC_SECOND_SCALE = 1000000; public static final int UC_MILISECOND_SCALE = 1000; diff --git a/bindings/pascal/unicorn/UnicornConst.pas b/bindings/pascal/unicorn/UnicornConst.pas index faff27bf..26896d13 100644 --- a/bindings/pascal/unicorn/UnicornConst.pas +++ b/bindings/pascal/unicorn/UnicornConst.pas @@ -7,14 +7,12 @@ interface const UC_API_MAJOR = 2; UC_API_MINOR = 0; - - UC_API_PATCH = 0; + UC_API_PATCH = 1; UC_API_EXTRA = 255; UC_VERSION_MAJOR = 2; UC_VERSION_MINOR = 0; - - UC_VERSION_PATCH = 0; + UC_VERSION_PATCH = 1; UC_VERSION_EXTRA = 255; UC_SECOND_SCALE = 1000000; UC_MILISECOND_SCALE = 1000; diff --git a/bindings/python/unicorn/unicorn_const.py b/bindings/python/unicorn/unicorn_const.py index 5fdb8537..f491dd26 100644 --- a/bindings/python/unicorn/unicorn_const.py +++ b/bindings/python/unicorn/unicorn_const.py @@ -2,14 +2,12 @@ UC_API_MAJOR = 2 UC_API_MINOR = 0 - -UC_API_PATCH = 0 +UC_API_PATCH = 1 UC_API_EXTRA = 255 UC_VERSION_MAJOR = 2 UC_VERSION_MINOR = 0 - -UC_VERSION_PATCH = 0 +UC_VERSION_PATCH = 1 UC_VERSION_EXTRA = 255 UC_SECOND_SCALE = 1000000 UC_MILISECOND_SCALE = 1000 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 1fb21968..e317589e 100644 --- a/bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb +++ b/bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb @@ -4,14 +4,12 @@ module UnicornEngine UC_API_MAJOR = 2 UC_API_MINOR = 0 - - UC_API_PATCH = 0 + UC_API_PATCH = 1 UC_API_EXTRA = 255 UC_VERSION_MAJOR = 2 UC_VERSION_MINOR = 0 - - UC_VERSION_PATCH = 0 + UC_VERSION_PATCH = 1 UC_VERSION_EXTRA = 255 UC_SECOND_SCALE = 1000000 UC_MILISECOND_SCALE = 1000