Skip to content

Commit 5dbc640

Browse files
committed
bump UC_VERSION_EXTRA to 1
1 parent a709e68 commit 5dbc640

File tree

6 files changed

+6
-11
lines changed

6 files changed

+6
-11
lines changed

bindings/dotnet/UnicornManaged/Const/Common.fs

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ module Common =
1212
let UC_VERSION_MAJOR = 1
1313

1414
let UC_VERSION_MINOR = 0
15-
16-
let UC_VERSION_EXTRA = 0
15+
let UC_VERSION_EXTRA = 1
1716
let UC_SECOND_SCALE = 1000000
1817
let UC_MILISECOND_SCALE = 1000
1918
let UC_ARCH_ARM = 1

bindings/go/unicorn/unicorn_const.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ const (
77
VERSION_MAJOR = 1
88

99
VERSION_MINOR = 0
10-
11-
VERSION_EXTRA = 0
10+
VERSION_EXTRA = 1
1211
SECOND_SCALE = 1000000
1312
MILISECOND_SCALE = 1000
1413
ARCH_ARM = 1

bindings/java/unicorn/UnicornConst.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ public interface UnicornConst {
99
public static final int UC_VERSION_MAJOR = 1;
1010

1111
public static final int UC_VERSION_MINOR = 0;
12-
13-
public static final int UC_VERSION_EXTRA = 0;
12+
public static final int UC_VERSION_EXTRA = 1;
1413
public static final int UC_SECOND_SCALE = 1000000;
1514
public static final int UC_MILISECOND_SCALE = 1000;
1615
public static final int UC_ARCH_ARM = 1;

bindings/python/unicorn/unicorn_const.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
UC_VERSION_MAJOR = 1
66

77
UC_VERSION_MINOR = 0
8-
9-
UC_VERSION_EXTRA = 0
8+
UC_VERSION_EXTRA = 1
109
UC_SECOND_SCALE = 1000000
1110
UC_MILISECOND_SCALE = 1000
1211
UC_ARCH_ARM = 1

bindings/ruby/unicorn_gem/lib/unicorn/unicorn_const.rb

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ module Unicorn
77
UC_VERSION_MAJOR = 1
88

99
UC_VERSION_MINOR = 0
10-
11-
UC_VERSION_EXTRA = 0
10+
UC_VERSION_EXTRA = 1
1211
UC_SECOND_SCALE = 1000000
1312
UC_MILISECOND_SCALE = 1000
1413
UC_ARCH_ARM = 1

include/unicorn/unicorn.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ typedef size_t uc_hook;
7070
// Unicorn package version
7171
#define UC_VERSION_MAJOR UC_API_MAJOR
7272
#define UC_VERSION_MINOR UC_API_MINOR
73-
#define UC_VERSION_EXTRA 0
73+
#define UC_VERSION_EXTRA 1
7474

7575

7676
/*

0 commit comments

Comments
 (0)