Skip to content

Commit

Permalink
Bump version in bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
wtdcode committed Feb 13, 2022
1 parent 73e4a90 commit c10639f
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 12 deletions.
5 changes: 3 additions & 2 deletions bindings/dotnet/UnicornManaged/Const/Common.fs
Expand Up @@ -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
Expand All @@ -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
Expand Down
5 changes: 3 additions & 2 deletions bindings/go/unicorn/unicorn_const.go
Expand Up @@ -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
Expand All @@ -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
Expand Down
5 changes: 3 additions & 2 deletions bindings/java/unicorn/UnicornConst.java
Expand Up @@ -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;
Expand All @@ -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;
Expand Down
5 changes: 3 additions & 2 deletions bindings/pascal/unicorn/UnicornConst.pas
Expand Up @@ -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;
Expand All @@ -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;
Expand Down
5 changes: 3 additions & 2 deletions bindings/python/unicorn/unicorn_const.py
Expand Up @@ -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
Expand All @@ -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
Expand Down
5 changes: 3 additions & 2 deletions bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit c10639f

Please sign in to comment.