From 7e4e68ae5b93ee02bccd1a47b0a05671c50f3a54 Mon Sep 17 00:00:00 2001 From: mio Date: Sat, 12 Aug 2023 19:31:32 +0800 Subject: [PATCH] Bump version --- bindings/python/setup.py | 4 ++-- bindings/rust/Cargo.toml | 2 +- include/unicornafl/unicornafl.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 9c3f3261..9b14f7ad 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -26,7 +26,7 @@ SRC_DIR = ROOT_DIR / '..' / '..' BUILD_DIR = SRC_DIR / 'build_python' -VERSION = "2.0.2" +VERSION = "2.1.0" if SYSTEM == 'darwin': LIBRARY_FILE = "libunicornafl.dylib" @@ -145,7 +145,7 @@ def run(self): zip_safe=False, include_package_data=True, install_requires=[ - "unicorn>=2.0.0rc7" + "unicorn>=2.0.1" ], is_pure=False, package_data={ diff --git a/bindings/rust/Cargo.toml b/bindings/rust/Cargo.toml index 90a7ed2f..f4b5c7e0 100644 --- a/bindings/rust/Cargo.toml +++ b/bindings/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unicornafl" -version = "1.1.0" +version = "1.1.1" authors = ["Lukas Seidel", "Dominik Maier"] documentation = "" edition = "2018" diff --git a/include/unicornafl/unicornafl.h b/include/unicornafl/unicornafl.h index ed026b50..7a76e405 100644 --- a/include/unicornafl/unicornafl.h +++ b/include/unicornafl/unicornafl.h @@ -13,7 +13,7 @@ extern "C" { #define UNICORNAFL_EXPORT #endif -#define MIN_UC_VERSION 0x02000006 +#define MIN_UC_VERSION 0x02000100 typedef enum uc_afl_ret { UC_AFL_RET_OK = 0,