bump version to 2.0.2

This commit is contained in:
Nguyen Anh Quynh 2023-02-04 13:00:58 +08:00
parent a25adf84f0
commit 6e9c6aea5f
4 changed files with 6 additions and 6 deletions

View File

@ -45,7 +45,7 @@ set(CMAKE_C_STANDARD 11)
set(UNICORN_VERSION_MAJOR 2) set(UNICORN_VERSION_MAJOR 2)
set(UNICORN_VERSION_MINOR 0) set(UNICORN_VERSION_MINOR 0)
set(UNICORN_VERSION_PATCH 1) set(UNICORN_VERSION_PATCH 2)
include(bundle_static.cmake) include(bundle_static.cmake)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "unicorn-engine" name = "unicorn-engine"
version = "2.0.1" version = "2.0.2"
authors = ["Ziqiao Kong", "Lukas Seidel"] authors = ["Ziqiao Kong", "Lukas Seidel"]
documentation = "https://github.com/unicorn-engine/unicorn/wiki" documentation = "https://github.com/unicorn-engine/unicorn/wiki"
edition = "2021" edition = "2021"
@ -51,4 +51,4 @@ arch_sparc = []
arch_m68k = [] arch_m68k = []
arch_ppc = [] arch_ppc = []
arch_s390x = [] arch_s390x = []
arch_tricore = [] arch_tricore = []

View File

@ -30,7 +30,7 @@ SRC_DIR = os.path.join(ROOT_DIR, 'src')
UC_DIR = SRC_DIR if os.path.exists(SRC_DIR) else os.path.join(ROOT_DIR, '../..') UC_DIR = SRC_DIR if os.path.exists(SRC_DIR) else os.path.join(ROOT_DIR, '../..')
BUILD_DIR = os.path.join(UC_DIR, 'build_python') BUILD_DIR = os.path.join(UC_DIR, 'build_python')
VERSION = "2.0.1.post1" VERSION = "2.0.2"
if SYSTEM == 'darwin': if SYSTEM == 'darwin':
LIBRARY_FILE = "libunicorn.2.dylib" LIBRARY_FILE = "libunicorn.2.dylib"

View File

@ -72,9 +72,9 @@ typedef size_t uc_hook;
// Unicorn API version // Unicorn API version
#define UC_API_MAJOR 2 #define UC_API_MAJOR 2
#define UC_API_MINOR 0 #define UC_API_MINOR 0
#define UC_API_PATCH 1 #define UC_API_PATCH 2
// Release candidate version, 255 means the official release. // Release candidate version, 255 means the official release.
#define UC_API_EXTRA 255 #define UC_API_EXTRA 1
// Unicorn package version // Unicorn package version
#define UC_VERSION_MAJOR UC_API_MAJOR #define UC_VERSION_MAJOR UC_API_MAJOR