File tree 12 files changed +19
-33
lines changed
ruby/unicorn_gem/lib/unicorn_engine
12 files changed +19
-33
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " unicorn-engine"
3
- version = " 2.1.1 "
3
+ version = " 2.1.2 "
4
4
authors = [" Ziqiao Kong" , " Lukas Seidel" ]
5
5
documentation = " https://github.com/unicorn-engine/unicorn/wiki"
6
6
edition = " 2021"
Original file line number Diff line number Diff line change @@ -8,13 +8,11 @@ open System
8
8
module Common =
9
9
let UC_API_MAJOR = 2
10
10
let UC_API_MINOR = 1
11
-
12
- let UC_API_PATCH = 0
11
+ let UC_API_PATCH = 2
13
12
let UC_API_EXTRA = 255
14
13
let UC_VERSION_MAJOR = 2
15
14
let UC_VERSION_MINOR = 1
16
-
17
- let UC_VERSION_PATCH = 0
15
+ let UC_VERSION_PATCH = 2
18
16
let UC_VERSION_EXTRA = 255
19
17
let UC_SECOND_SCALE = 1000000
20
18
let UC_MILISECOND_SCALE = 1000
Original file line number Diff line number Diff line change 6
6
<Copyright >Copyright © Antonio Parata 2016</Copyright >
7
7
<RepositoryUrl >https://github.com/unicorn-engine/unicorn</RepositoryUrl >
8
8
<PackageDescription >.NET bindings for unicorn</PackageDescription >
9
- <VersionPrefix >2.1.1 </VersionPrefix >
9
+ <VersionPrefix >2.1.2 </VersionPrefix >
10
10
<VersionSuffix >$(VersionSuffix)</VersionSuffix >
11
11
<ProjectGuid >0c21f1c1-2725-4a46-9022-1905f85822a5</ProjectGuid >
12
12
<AutoGenerateBindingRedirects >true</AutoGenerateBindingRedirects >
Original file line number Diff line number Diff line change 6
6
<AssemblyName >UnicornSamples</AssemblyName >
7
7
<Copyright >Copyright © Antonio Parata 2016</Copyright >
8
8
<RepositoryUrl >https://github.com/unicorn-engine/unicorn</RepositoryUrl >
9
- <Version >2.1.1 </Version >
9
+ <Version >2.1.2 </Version >
10
10
<ProjectGuid >{B80B5987-1E24-4309-8BF9-C4F91270F21C}</ProjectGuid >
11
11
<AutoGenerateBindingRedirects >true</AutoGenerateBindingRedirects >
12
12
</PropertyGroup >
Original file line number Diff line number Diff line change @@ -3,13 +3,11 @@ package unicorn
3
3
const (
4
4
API_MAJOR = 2
5
5
API_MINOR = 1
6
-
7
- API_PATCH = 0
6
+ API_PATCH = 2
8
7
API_EXTRA = 255
9
8
VERSION_MAJOR = 2
10
9
VERSION_MINOR = 1
11
-
12
- VERSION_PATCH = 0
10
+ VERSION_PATCH = 2
13
11
VERSION_EXTRA = 255
14
12
SECOND_SCALE = 1000000
15
13
MILISECOND_SCALE = 1000
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >org.unicorn-engine</groupId >
8
8
<artifactId >unicorn</artifactId >
9
- <version >2.1.1 </version >
9
+ <version >2.1.2 </version >
10
10
11
11
<name >unicorn</name >
12
12
<url >https://www.unicorn-engine.org</url >
Original file line number Diff line number Diff line change 5
5
public interface UnicornConst {
6
6
public static final int UC_API_MAJOR = 2 ;
7
7
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 ;
10
9
public static final int UC_API_EXTRA = 255 ;
11
10
public static final int UC_VERSION_MAJOR = 2 ;
12
11
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 ;
15
13
public static final int UC_VERSION_EXTRA = 255 ;
16
14
public static final int UC_SECOND_SCALE = 1000000 ;
17
15
public static final int UC_MILISECOND_SCALE = 1000 ;
Original file line number Diff line number Diff line change @@ -6,13 +6,11 @@ interface
6
6
7
7
const UC_API_MAJOR = 2 ;
8
8
UC_API_MINOR = 1 ;
9
-
10
- UC_API_PATCH = 0 ;
9
+ UC_API_PATCH = 2 ;
11
10
UC_API_EXTRA = 255 ;
12
11
UC_VERSION_MAJOR = 2 ;
13
12
UC_VERSION_MINOR = 1 ;
14
-
15
- UC_VERSION_PATCH = 0 ;
13
+ UC_VERSION_PATCH = 2 ;
16
14
UC_VERSION_EXTRA = 255 ;
17
15
UC_SECOND_SCALE = 1000000 ;
18
16
UC_MILISECOND_SCALE = 1000 ;
Original file line number Diff line number Diff line change 1
1
# For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT [unicorn_const.py]
2
2
UC_API_MAJOR = 2
3
3
UC_API_MINOR = 1
4
-
5
- UC_API_PATCH = 0
4
+ UC_API_PATCH = 2
6
5
UC_API_EXTRA = 255
7
6
UC_VERSION_MAJOR = 2
8
7
UC_VERSION_MINOR = 1
9
-
10
- UC_VERSION_PATCH = 0
8
+ UC_VERSION_PATCH = 2
11
9
UC_VERSION_EXTRA = 255
12
10
UC_SECOND_SCALE = 1000000
13
11
UC_MILISECOND_SCALE = 1000
Original file line number Diff line number Diff line change 3
3
module UnicornEngine
4
4
UC_API_MAJOR = 2
5
5
UC_API_MINOR = 1
6
-
7
- UC_API_PATCH = 0
6
+ UC_API_PATCH = 2
8
7
UC_API_EXTRA = 255
9
8
UC_VERSION_MAJOR = 2
10
9
UC_VERSION_MINOR = 1
11
-
12
- UC_VERSION_PATCH = 0
10
+ UC_VERSION_PATCH = 2
13
11
UC_VERSION_EXTRA = 255
14
12
UC_SECOND_SCALE = 1000000
15
13
UC_MILISECOND_SCALE = 1000
Original file line number Diff line number Diff line change 3
3
pub const unicornConst = enum (c_int ) {
4
4
API_MAJOR = 2 ,
5
5
API_MINOR = 1 ,
6
-
7
- API_PATCH = 0 ,
6
+ API_PATCH = 2 ,
8
7
API_EXTRA = 255 ,
9
8
VERSION_MAJOR = 2 ,
10
9
VERSION_MINOR = 1 ,
11
-
12
- VERSION_PATCH = 0 ,
10
+ VERSION_PATCH = 2 ,
13
11
VERSION_EXTRA = 255 ,
14
12
SECOND_SCALE = 1000000 ,
15
13
MILISECOND_SCALE = 1000 ,
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ typedef size_t uc_hook;
72
72
// Unicorn API version
73
73
#define UC_API_MAJOR 2
74
74
#define UC_API_MINOR 1
75
- #define UC_API_PATCH 1
75
+ #define UC_API_PATCH 2
76
76
// Release candidate version, 255 means the official release.
77
77
#define UC_API_EXTRA 255
78
78
You can’t perform that action at this time.
0 commit comments