From 2874435d2f7821f6e75bf502f0929da95ef63926 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Sun, 16 May 2021 21:38:08 +0800 Subject: [PATCH] bump version to 1.0.3 --- CMakeLists.txt | 2 +- bindings/dotnet/UnicornManaged/Const/Common.fs | 2 +- bindings/go/unicorn/unicorn_const.go | 2 +- bindings/java/unicorn/UnicornConst.java | 2 +- bindings/pascal/unicorn/UnicornConst.pas | 2 +- bindings/python/unicorn/unicorn_const.py | 2 +- bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb | 2 +- include/unicorn/unicorn.h | 2 +- pkgconfig.mk | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 31c354c5..d65ae8cf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ project(unicorn C) set(UNICORN_VERSION_MAJOR 1) set(UNICORN_VERSION_MINOR 0) -set(UNICORN_VERSION_PATCH 2) +set(UNICORN_VERSION_PATCH 3) option(BUILD_SHARED_LIBS "Build shared instead of static library" ON) option(UNICORN_INSTALL "Install unicorn" ON) diff --git a/bindings/dotnet/UnicornManaged/Const/Common.fs b/bindings/dotnet/UnicornManaged/Const/Common.fs index 38ae2821..1491194a 100644 --- a/bindings/dotnet/UnicornManaged/Const/Common.fs +++ b/bindings/dotnet/UnicornManaged/Const/Common.fs @@ -12,7 +12,7 @@ module Common = let UC_VERSION_MAJOR = 1 let UC_VERSION_MINOR = 0 - let UC_VERSION_EXTRA = 2 + let UC_VERSION_EXTRA = 3 let UC_SECOND_SCALE = 1000000 let UC_MILISECOND_SCALE = 1000 let UC_ARCH_ARM = 1 diff --git a/bindings/go/unicorn/unicorn_const.go b/bindings/go/unicorn/unicorn_const.go index 7a55f531..a8fe788d 100644 --- a/bindings/go/unicorn/unicorn_const.go +++ b/bindings/go/unicorn/unicorn_const.go @@ -7,7 +7,7 @@ const ( VERSION_MAJOR = 1 VERSION_MINOR = 0 - VERSION_EXTRA = 2 + VERSION_EXTRA = 3 SECOND_SCALE = 1000000 MILISECOND_SCALE = 1000 ARCH_ARM = 1 diff --git a/bindings/java/unicorn/UnicornConst.java b/bindings/java/unicorn/UnicornConst.java index 2a3c8601..153b90ed 100644 --- a/bindings/java/unicorn/UnicornConst.java +++ b/bindings/java/unicorn/UnicornConst.java @@ -9,7 +9,7 @@ public interface UnicornConst { public static final int UC_VERSION_MAJOR = 1; public static final int UC_VERSION_MINOR = 0; - public static final int UC_VERSION_EXTRA = 2; + public static final int UC_VERSION_EXTRA = 3; public static final int UC_SECOND_SCALE = 1000000; public static final int UC_MILISECOND_SCALE = 1000; public static final int UC_ARCH_ARM = 1; diff --git a/bindings/pascal/unicorn/UnicornConst.pas b/bindings/pascal/unicorn/UnicornConst.pas index ba7cd3b7..f9a89228 100644 --- a/bindings/pascal/unicorn/UnicornConst.pas +++ b/bindings/pascal/unicorn/UnicornConst.pas @@ -10,7 +10,7 @@ const UC_API_MAJOR = 1; UC_VERSION_MAJOR = 1; UC_VERSION_MINOR = 0; - UC_VERSION_EXTRA = 2; + UC_VERSION_EXTRA = 3; UC_SECOND_SCALE = 1000000; UC_MILISECOND_SCALE = 1000; UC_ARCH_ARM = 1; diff --git a/bindings/python/unicorn/unicorn_const.py b/bindings/python/unicorn/unicorn_const.py index 9d0514c8..4015cb37 100644 --- a/bindings/python/unicorn/unicorn_const.py +++ b/bindings/python/unicorn/unicorn_const.py @@ -5,7 +5,7 @@ UC_API_MINOR = 0 UC_VERSION_MAJOR = 1 UC_VERSION_MINOR = 0 -UC_VERSION_EXTRA = 2 +UC_VERSION_EXTRA = 3 UC_SECOND_SCALE = 1000000 UC_MILISECOND_SCALE = 1000 UC_ARCH_ARM = 1 diff --git a/bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb b/bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb index aeecc865..3c61824f 100644 --- a/bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb +++ b/bindings/ruby/unicorn_gem/lib/unicorn_engine/unicorn_const.rb @@ -7,7 +7,7 @@ module UnicornEngine UC_VERSION_MAJOR = 1 UC_VERSION_MINOR = 0 - UC_VERSION_EXTRA = 2 + UC_VERSION_EXTRA = 3 UC_SECOND_SCALE = 1000000 UC_MILISECOND_SCALE = 1000 UC_ARCH_ARM = 1 diff --git a/include/unicorn/unicorn.h b/include/unicorn/unicorn.h index a87daf2f..8b78aeab 100644 --- a/include/unicorn/unicorn.h +++ b/include/unicorn/unicorn.h @@ -71,7 +71,7 @@ typedef size_t uc_hook; // Unicorn package version #define UC_VERSION_MAJOR UC_API_MAJOR #define UC_VERSION_MINOR UC_API_MINOR -#define UC_VERSION_EXTRA 2 +#define UC_VERSION_EXTRA 3 /* diff --git a/pkgconfig.mk b/pkgconfig.mk index d9c39741..d09cdaaa 100644 --- a/pkgconfig.mk +++ b/pkgconfig.mk @@ -7,7 +7,7 @@ PKG_MAJOR = 1 PKG_MINOR = 0 # version bugfix level. Example: PKG_EXTRA = 1 -PKG_EXTRA = 2 +PKG_EXTRA = 3 # version tag. Examples: rc1, b2, post1 # PKG_TAG = rc6