From bdd9f4fa9a553a29104a8193fb66bacac9db902b Mon Sep 17 00:00:00 2001 From: mio Date: Tue, 1 Nov 2022 10:06:22 +0100 Subject: [PATCH] Bump version to 2.0.1 --- Cargo.toml | 2 +- bindings/python/setup.py | 2 +- include/unicorn/unicorn.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9692ecb3..3d6d388d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unicorn-engine" -version = "2.0.0" +version = "2.0.1" 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 f8948d62..34c6faf4 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 = 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.0" +VERSION = "2.0.1" if SYSTEM == 'darwin': LIBRARY_FILE = "libunicorn.2.dylib" diff --git a/include/unicorn/unicorn.h b/include/unicorn/unicorn.h index c8315b83..4b169d76 100644 --- a/include/unicorn/unicorn.h +++ b/include/unicorn/unicorn.h @@ -72,7 +72,7 @@ typedef size_t uc_hook; // Unicorn API version #define UC_API_MAJOR 2 #define UC_API_MINOR 0 -#define UC_API_PATCH 0 +#define UC_API_PATCH 1 // Release candidate version, 255 means the official release. #define UC_API_EXTRA 255