diff --git a/Cargo.toml b/Cargo.toml index 8c6ef62e..b48ac46b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unicorn-engine" -version = "2.0.0-rc6" +version = "2.0.0-rc7" authors = ["Ziqiao Kong", "Lukas Seidel"] documentation = "https://github.com/unicorn-engine/unicorn/wiki" edition = "2021" diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 09a5b614..cd7e961c 100755 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -29,7 +29,7 @@ SRC_DIR = os.path.join(ROOT_DIR, 'src') UC_DIR = os.path.join(ROOT_DIR, '../..') BUILD_DIR = os.path.join(UC_DIR, 'build_python') -VERSION = "2.0.0rc6" +VERSION = "2.0.0rc7" if SYSTEM == 'darwin': LIBRARY_FILE = "libunicorn.dylib" diff --git a/include/unicorn/unicorn.h b/include/unicorn/unicorn.h index 78dc1947..993c63ae 100644 --- a/include/unicorn/unicorn.h +++ b/include/unicorn/unicorn.h @@ -72,7 +72,7 @@ typedef size_t uc_hook; #define UC_API_MAJOR 2 #define UC_API_MINOR 0 #define UC_API_PATCH 0 -#define UC_API_EXTRA 6 +#define UC_API_EXTRA 7 // Unicorn package version #define UC_VERSION_MAJOR UC_API_MAJOR