Skip to content

Commit b8e19b6

Browse files
committed
CI(release): Bump 2.1.2
1 parent ad33384 commit b8e19b6

File tree

12 files changed

+19
-33
lines changed

12 files changed

+19
-33
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.1"
3+
version = "2.1.2"
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-4
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@ open System
88
module Common =
99
let UC_API_MAJOR = 2
1010
let UC_API_MINOR = 1
11-
12-
let UC_API_PATCH = 0
11+
let UC_API_PATCH = 2
1312
let UC_API_EXTRA = 255
1413
let UC_VERSION_MAJOR = 2
1514
let UC_VERSION_MINOR = 1
16-
17-
let UC_VERSION_PATCH = 0
15+
let UC_VERSION_PATCH = 2
1816
let UC_VERSION_EXTRA = 255
1917
let UC_SECOND_SCALE = 1000000
2018
let UC_MILISECOND_SCALE = 1000

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.1</VersionPrefix>
9+
<VersionPrefix>2.1.2</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.1</Version>
9+
<Version>2.1.2</Version>
1010
<ProjectGuid>{B80B5987-1E24-4309-8BF9-C4F91270F21C}</ProjectGuid>
1111
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1212
</PropertyGroup>

bindings/go/unicorn/unicorn_const.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@ package unicorn
33
const (
44
API_MAJOR = 2
55
API_MINOR = 1
6-
7-
API_PATCH = 0
6+
API_PATCH = 2
87
API_EXTRA = 255
98
VERSION_MAJOR = 2
109
VERSION_MINOR = 1
11-
12-
VERSION_PATCH = 0
10+
VERSION_PATCH = 2
1311
VERSION_EXTRA = 255
1412
SECOND_SCALE = 1000000
1513
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.1</version>
9+
<version>2.1.2</version>
1010

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

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

+2-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +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-
9-
public static final int UC_API_PATCH = 0;
8+
public static final int UC_API_PATCH = 2;
109
public static final int UC_API_EXTRA = 255;
1110
public static final int UC_VERSION_MAJOR = 2;
1211
public static final int UC_VERSION_MINOR = 1;
13-
14-
public static final int UC_VERSION_PATCH = 0;
12+
public static final int UC_VERSION_PATCH = 2;
1513
public static final int UC_VERSION_EXTRA = 255;
1614
public static final int UC_SECOND_SCALE = 1000000;
1715
public static final int UC_MILISECOND_SCALE = 1000;

bindings/pascal/unicorn/UnicornConst.pas

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

77
const UC_API_MAJOR = 2;
88
UC_API_MINOR = 1;
9-
10-
UC_API_PATCH = 0;
9+
UC_API_PATCH = 2;
1110
UC_API_EXTRA = 255;
1211
UC_VERSION_MAJOR = 2;
1312
UC_VERSION_MINOR = 1;
14-
15-
UC_VERSION_PATCH = 0;
13+
UC_VERSION_PATCH = 2;
1614
UC_VERSION_EXTRA = 255;
1715
UC_SECOND_SCALE = 1000000;
1816
UC_MILISECOND_SCALE = 1000;

bindings/python/unicorn/unicorn_const.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +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-
5-
UC_API_PATCH = 0
4+
UC_API_PATCH = 2
65
UC_API_EXTRA = 255
76
UC_VERSION_MAJOR = 2
87
UC_VERSION_MINOR = 1
9-
10-
UC_VERSION_PATCH = 0
8+
UC_VERSION_PATCH = 2
119
UC_VERSION_EXTRA = 255
1210
UC_SECOND_SCALE = 1000000
1311
UC_MILISECOND_SCALE = 1000

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

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33
module UnicornEngine
44
UC_API_MAJOR = 2
55
UC_API_MINOR = 1
6-
7-
UC_API_PATCH = 0
6+
UC_API_PATCH = 2
87
UC_API_EXTRA = 255
98
UC_VERSION_MAJOR = 2
109
UC_VERSION_MINOR = 1
11-
12-
UC_VERSION_PATCH = 0
10+
UC_VERSION_PATCH = 2
1311
UC_VERSION_EXTRA = 255
1412
UC_SECOND_SCALE = 1000000
1513
UC_MILISECOND_SCALE = 1000

bindings/zig/unicorn/unicorn_const.zig

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33
pub const unicornConst = enum(c_int) {
44
API_MAJOR = 2,
55
API_MINOR = 1,
6-
7-
API_PATCH = 0,
6+
API_PATCH = 2,
87
API_EXTRA = 255,
98
VERSION_MAJOR = 2,
109
VERSION_MINOR = 1,
11-
12-
VERSION_PATCH = 0,
10+
VERSION_PATCH = 2,
1311
VERSION_EXTRA = 255,
1412
SECOND_SCALE = 1000000,
1513
MILISECOND_SCALE = 1000,

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 1
75+
#define UC_API_PATCH 2
7676
// Release candidate version, 255 means the official release.
7777
#define UC_API_EXTRA 255
7878

0 commit comments

Comments
 (0)