Skip to content

Commit

Permalink
Bump bindings version to 2.0.0-rc7
Browse files Browse the repository at this point in the history
  • Loading branch information
wtdcode committed Apr 17, 2022
1 parent 8fd9ee3 commit 185a6fe
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 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 = 6
let UC_API_EXTRA = 7
let UC_VERSION_MAJOR = 2

let UC_VERSION_MINOR = 0

let UC_VERSION_PATCH = 0
let UC_VERSION_EXTRA = 6
let UC_VERSION_EXTRA = 7
let UC_SECOND_SCALE = 1000000
let UC_MILISECOND_SCALE = 1000
let UC_ARCH_ARM = 1
Expand Down
4 changes: 2 additions & 2 deletions bindings/go/unicorn/unicorn_const.go
Expand Up @@ -6,13 +6,13 @@ const (
API_MINOR = 0

API_PATCH = 0
API_EXTRA = 6
API_EXTRA = 7
VERSION_MAJOR = 2

VERSION_MINOR = 0

VERSION_PATCH = 0
VERSION_EXTRA = 6
VERSION_EXTRA = 7
SECOND_SCALE = 1000000
MILISECOND_SCALE = 1000
ARCH_ARM = 1
Expand Down
4 changes: 2 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 = 6;
public static final int UC_API_EXTRA = 7;
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 = 6;
public static final int UC_VERSION_EXTRA = 7;
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 Down
4 changes: 2 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 = 6;
UC_API_EXTRA = 7;
UC_VERSION_MAJOR = 2;

UC_VERSION_MINOR = 0;

UC_VERSION_PATCH = 0;
UC_VERSION_EXTRA = 6;
UC_VERSION_EXTRA = 7;
UC_SECOND_SCALE = 1000000;
UC_MILISECOND_SCALE = 1000;
UC_ARCH_ARM = 1;
Expand Down
4 changes: 2 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 = 6
UC_API_EXTRA = 7
UC_VERSION_MAJOR = 2

UC_VERSION_MINOR = 0

UC_VERSION_PATCH = 0
UC_VERSION_EXTRA = 6
UC_VERSION_EXTRA = 7
UC_SECOND_SCALE = 1000000
UC_MILISECOND_SCALE = 1000
UC_ARCH_ARM = 1
Expand Down
4 changes: 2 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 = 6
UC_API_EXTRA = 7
UC_VERSION_MAJOR = 2

UC_VERSION_MINOR = 0

UC_VERSION_PATCH = 0
UC_VERSION_EXTRA = 6
UC_VERSION_EXTRA = 7
UC_SECOND_SCALE = 1000000
UC_MILISECOND_SCALE = 1000
UC_ARCH_ARM = 1
Expand Down

0 comments on commit 185a6fe

Please sign in to comment.