bump version to 2.0.2
This commit is contained in:
parent
a25adf84f0
commit
6e9c6aea5f
|
@ -45,7 +45,7 @@ set(CMAKE_C_STANDARD 11)
|
|||
|
||||
set(UNICORN_VERSION_MAJOR 2)
|
||||
set(UNICORN_VERSION_MINOR 0)
|
||||
set(UNICORN_VERSION_PATCH 1)
|
||||
set(UNICORN_VERSION_PATCH 2)
|
||||
|
||||
include(bundle_static.cmake)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "unicorn-engine"
|
||||
version = "2.0.1"
|
||||
version = "2.0.2"
|
||||
authors = ["Ziqiao Kong", "Lukas Seidel"]
|
||||
documentation = "https://github.com/unicorn-engine/unicorn/wiki"
|
||||
edition = "2021"
|
||||
|
|
|
@ -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, '../..')
|
||||
BUILD_DIR = os.path.join(UC_DIR, 'build_python')
|
||||
|
||||
VERSION = "2.0.1.post1"
|
||||
VERSION = "2.0.2"
|
||||
|
||||
if SYSTEM == 'darwin':
|
||||
LIBRARY_FILE = "libunicorn.2.dylib"
|
||||
|
|
|
@ -72,9 +72,9 @@ typedef size_t uc_hook;
|
|||
// Unicorn API version
|
||||
#define UC_API_MAJOR 2
|
||||
#define UC_API_MINOR 0
|
||||
#define UC_API_PATCH 1
|
||||
#define UC_API_PATCH 2
|
||||
// Release candidate version, 255 means the official release.
|
||||
#define UC_API_EXTRA 255
|
||||
#define UC_API_EXTRA 1
|
||||
|
||||
// Unicorn package version
|
||||
#define UC_VERSION_MAJOR UC_API_MAJOR
|
||||
|
|
Loading…
Reference in New Issue