Skip to content

Commit 8dcaa33

Browse files
committed
Bump 2.1.3
1 parent 9ec6b0b commit 8dcaa33

File tree

20 files changed

+41
-27
lines changed

20 files changed

+41
-27
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unicorn-engine"
3-
version = "2.1.2"
3+
version = "2.1.3"
44
authors = ["Ziqiao Kong", "Lukas Seidel"]
55
documentation = "https://github.com/unicorn-engine/unicorn/wiki"
66
edition = "2021"

bindings/dotnet/UnicornEngine/Const/Common.fs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ open System
88
module Common =
99
let UC_API_MAJOR = 2
1010
let UC_API_MINOR = 1
11-
let UC_API_PATCH = 2
11+
let UC_API_PATCH = 3
1212
let UC_API_EXTRA = 255
1313
let UC_VERSION_MAJOR = 2
1414
let UC_VERSION_MINOR = 1
15-
let UC_VERSION_PATCH = 2
15+
let UC_VERSION_PATCH = 3
1616
let UC_VERSION_EXTRA = 255
1717
let UC_SECOND_SCALE = 1000000
1818
let UC_MILISECOND_SCALE = 1000

bindings/dotnet/UnicornEngine/Const/Mips.fs

+3-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,9 @@ module Mips =
198198
let UC_MIPS_REG_CP0_CONFIG3 = 137
199199
let UC_MIPS_REG_CP0_USERLOCAL = 138
200200
let UC_MIPS_REG_CP0_STATUS = 139
201-
let UC_MIPS_REG_ENDING = 140
201+
let UC_MIPS_REG_FIR = 140
202+
let UC_MIPS_REG_FCSR = 141
203+
let UC_MIPS_REG_ENDING = 142
202204
let UC_MIPS_REG_ZERO = 2
203205
let UC_MIPS_REG_AT = 3
204206
let UC_MIPS_REG_V0 = 4

bindings/dotnet/UnicornEngine/UnicornEngine.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Copyright>Copyright © Antonio Parata 2016</Copyright>
77
<RepositoryUrl>https://github.com/unicorn-engine/unicorn</RepositoryUrl>
88
<PackageDescription>.NET bindings for unicorn</PackageDescription>
9-
<VersionPrefix>2.1.2</VersionPrefix>
9+
<VersionPrefix>2.1.3</VersionPrefix>
1010
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
1111
<ProjectGuid>0c21f1c1-2725-4a46-9022-1905f85822a5</ProjectGuid>
1212
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>

bindings/dotnet/UnicornSamples/UnicornSamples.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<AssemblyName>UnicornSamples</AssemblyName>
77
<Copyright>Copyright © Antonio Parata 2016</Copyright>
88
<RepositoryUrl>https://github.com/unicorn-engine/unicorn</RepositoryUrl>
9-
<Version>2.1.2</Version>
9+
<Version>2.1.3</Version>
1010
<ProjectGuid>{B80B5987-1E24-4309-8BF9-C4F91270F21C}</ProjectGuid>
1111
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1212
</PropertyGroup>

bindings/go/unicorn/mips_const.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,9 @@ const (
193193
MIPS_REG_CP0_CONFIG3 = 137
194194
MIPS_REG_CP0_USERLOCAL = 138
195195
MIPS_REG_CP0_STATUS = 139
196-
MIPS_REG_ENDING = 140
196+
MIPS_REG_FIR = 140
197+
MIPS_REG_FCSR = 141
198+
MIPS_REG_ENDING = 142
197199
MIPS_REG_ZERO = 2
198200
MIPS_REG_AT = 3
199201
MIPS_REG_V0 = 4

bindings/go/unicorn/unicorn_const.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package unicorn
33
const (
44
API_MAJOR = 2
55
API_MINOR = 1
6-
API_PATCH = 2
6+
API_PATCH = 3
77
API_EXTRA = 255
88
VERSION_MAJOR = 2
99
VERSION_MINOR = 1
10-
VERSION_PATCH = 2
10+
VERSION_PATCH = 3
1111
VERSION_EXTRA = 255
1212
SECOND_SCALE = 1000000
1313
MILISECOND_SCALE = 1000

bindings/java/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.unicorn-engine</groupId>
88
<artifactId>unicorn</artifactId>
9-
<version>2.1.2</version>
9+
<version>2.1.3</version>
1010

1111
<name>unicorn</name>
1212
<url>https://www.unicorn-engine.org</url>

bindings/java/src/main/java/unicorn/MipsConst.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,9 @@ public interface MipsConst {
195195
public static final int UC_MIPS_REG_CP0_CONFIG3 = 137;
196196
public static final int UC_MIPS_REG_CP0_USERLOCAL = 138;
197197
public static final int UC_MIPS_REG_CP0_STATUS = 139;
198-
public static final int UC_MIPS_REG_ENDING = 140;
198+
public static final int UC_MIPS_REG_FIR = 140;
199+
public static final int UC_MIPS_REG_FCSR = 141;
200+
public static final int UC_MIPS_REG_ENDING = 142;
199201
public static final int UC_MIPS_REG_ZERO = 2;
200202
public static final int UC_MIPS_REG_AT = 3;
201203
public static final int UC_MIPS_REG_V0 = 4;

bindings/java/src/main/java/unicorn/UnicornConst.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
public interface UnicornConst {
66
public static final int UC_API_MAJOR = 2;
77
public static final int UC_API_MINOR = 1;
8-
public static final int UC_API_PATCH = 2;
8+
public static final int UC_API_PATCH = 3;
99
public static final int UC_API_EXTRA = 255;
1010
public static final int UC_VERSION_MAJOR = 2;
1111
public static final int UC_VERSION_MINOR = 1;
12-
public static final int UC_VERSION_PATCH = 2;
12+
public static final int UC_VERSION_PATCH = 3;
1313
public static final int UC_VERSION_EXTRA = 255;
1414
public static final int UC_SECOND_SCALE = 1000000;
1515
public static final int UC_MILISECOND_SCALE = 1000;

bindings/pascal/unicorn/MipsConst.pas

+3-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,9 @@ interface
196196
UC_MIPS_REG_CP0_CONFIG3 = 137;
197197
UC_MIPS_REG_CP0_USERLOCAL = 138;
198198
UC_MIPS_REG_CP0_STATUS = 139;
199-
UC_MIPS_REG_ENDING = 140;
199+
UC_MIPS_REG_FIR = 140;
200+
UC_MIPS_REG_FCSR = 141;
201+
UC_MIPS_REG_ENDING = 142;
200202
UC_MIPS_REG_ZERO = 2;
201203
UC_MIPS_REG_AT = 3;
202204
UC_MIPS_REG_V0 = 4;

bindings/pascal/unicorn/UnicornConst.pas

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ interface
66

77
const UC_API_MAJOR = 2;
88
UC_API_MINOR = 1;
9-
UC_API_PATCH = 2;
9+
UC_API_PATCH = 3;
1010
UC_API_EXTRA = 255;
1111
UC_VERSION_MAJOR = 2;
1212
UC_VERSION_MINOR = 1;
13-
UC_VERSION_PATCH = 2;
13+
UC_VERSION_PATCH = 3;
1414
UC_VERSION_EXTRA = 255;
1515
UC_SECOND_SCALE = 1000000;
1616
UC_MILISECOND_SCALE = 1000;

bindings/python/unicorn/mips_const.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,9 @@
191191
UC_MIPS_REG_CP0_CONFIG3 = 137
192192
UC_MIPS_REG_CP0_USERLOCAL = 138
193193
UC_MIPS_REG_CP0_STATUS = 139
194-
UC_MIPS_REG_ENDING = 140
194+
UC_MIPS_REG_FIR = 140
195+
UC_MIPS_REG_FCSR = 141
196+
UC_MIPS_REG_ENDING = 142
195197
UC_MIPS_REG_ZERO = 2
196198
UC_MIPS_REG_AT = 3
197199
UC_MIPS_REG_V0 = 4

bindings/python/unicorn/unicorn_const.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [unicorn_const.py]
22
UC_API_MAJOR = 2
33
UC_API_MINOR = 1
4-
UC_API_PATCH = 2
4+
UC_API_PATCH = 3
55
UC_API_EXTRA = 255
66
UC_VERSION_MAJOR = 2
77
UC_VERSION_MINOR = 1
8-
UC_VERSION_PATCH = 2
8+
UC_VERSION_PATCH = 3
99
UC_VERSION_EXTRA = 255
1010
UC_SECOND_SCALE = 1000000
1111
UC_MILISECOND_SCALE = 1000

bindings/ruby/unicorn_gem/lib/unicorn_engine/mips_const.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,9 @@ module UnicornEngine
193193
UC_MIPS_REG_CP0_CONFIG3 = 137
194194
UC_MIPS_REG_CP0_USERLOCAL = 138
195195
UC_MIPS_REG_CP0_STATUS = 139
196-
UC_MIPS_REG_ENDING = 140
196+
UC_MIPS_REG_FIR = 140
197+
UC_MIPS_REG_FCSR = 141
198+
UC_MIPS_REG_ENDING = 142
197199
UC_MIPS_REG_ZERO = 2
198200
UC_MIPS_REG_AT = 3
199201
UC_MIPS_REG_V0 = 4

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
module UnicornEngine
44
UC_API_MAJOR = 2
55
UC_API_MINOR = 1
6-
UC_API_PATCH = 2
6+
UC_API_PATCH = 3
77
UC_API_EXTRA = 255
88
UC_VERSION_MAJOR = 2
99
UC_VERSION_MINOR = 1
10-
UC_VERSION_PATCH = 2
10+
UC_VERSION_PATCH = 3
1111
UC_VERSION_EXTRA = 255
1212
UC_SECOND_SCALE = 1000000
1313
UC_MILISECOND_SCALE = 1000

bindings/zig/unicorn/mips_const.zig

+3-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,9 @@ pub const mipsConst = enum(c_int) {
193193
MIPS_REG_CP0_CONFIG3 = 137,
194194
MIPS_REG_CP0_USERLOCAL = 138,
195195
MIPS_REG_CP0_STATUS = 139,
196-
MIPS_REG_ENDING = 140,
196+
MIPS_REG_FIR = 140,
197+
MIPS_REG_FCSR = 141,
198+
MIPS_REG_ENDING = 142,
197199
MIPS_REG_ZERO = 2,
198200
MIPS_REG_AT = 3,
199201
MIPS_REG_V0 = 4,

bindings/zig/unicorn/unicorn_const.zig

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
pub const unicornConst = enum(c_int) {
44
API_MAJOR = 2,
55
API_MINOR = 1,
6-
API_PATCH = 2,
6+
API_PATCH = 3,
77
API_EXTRA = 255,
88
VERSION_MAJOR = 2,
99
VERSION_MINOR = 1,
10-
VERSION_PATCH = 2,
10+
VERSION_PATCH = 3,
1111
VERSION_EXTRA = 255,
1212
SECOND_SCALE = 1000000,
1313
MILISECOND_SCALE = 1000,

build.zig.zon

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.{
22
.name = "unicorn",
3-
.version = "2.1.2",
3+
.version = "2.1.3",
44
.paths = .{""},
55
}

include/unicorn/unicorn.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ typedef size_t uc_hook;
7272
// Unicorn API version
7373
#define UC_API_MAJOR 2
7474
#define UC_API_MINOR 1
75-
#define UC_API_PATCH 2
75+
#define UC_API_PATCH 3
7676
// Release candidate version, 255 means the official release.
7777
#define UC_API_EXTRA 255
7878

0 commit comments

Comments
 (0)