From 6e9c6aea5fd79ba271a388eef114ee6410674da1 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Sat, 4 Feb 2023 13:00:58 +0800 Subject: [PATCH] bump version to 2.0.2 --- CMakeLists.txt | 2 +- Cargo.toml | 4 ++-- bindings/python/setup.py | 2 +- include/unicorn/unicorn.h | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4110ae53..d94bd464 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/Cargo.toml b/Cargo.toml index 46253df6..6731d9e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" @@ -51,4 +51,4 @@ arch_sparc = [] arch_m68k = [] arch_ppc = [] arch_s390x = [] -arch_tricore = [] \ No newline at end of file +arch_tricore = [] diff --git a/bindings/python/setup.py b/bindings/python/setup.py index e842db80..b8cfbdfa 100755 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -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" diff --git a/include/unicorn/unicorn.h b/include/unicorn/unicorn.h index 4b169d76..54ffd251 100644 --- a/include/unicorn/unicorn.h +++ b/include/unicorn/unicorn.h @@ -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