From 0d1270daaeadaa3470d910b451685588ae642329 Mon Sep 17 00:00:00 2001 From: Evan Teran Date: Fri, 4 May 2018 18:37:36 -0400 Subject: [PATCH] version bump to 1.0.0. A LOT has changed since the last release, and now is as good a time as any to regain some of the development momentum. This will be the last version to build with Qt4, and I predict switching to c++14 as the minimum standard required as well moving forward. --- CMakeLists.txt | 6 +++--- src/edb.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3bcc35fc3..8a7a0cf9c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,9 +35,9 @@ include_directories(${CAPSTONE_INCLUDE_DIRS}) link_directories(${CAPSTONE_LIBRARY_DIRS}) # eventually use this to generate version.h? -set(TARGET_VERSION_MAJOR 0) -set(TARGET_VERSION_MINOR 9) -set(TARGET_VERSION_PATCH 22) +set(TARGET_VERSION_MAJOR 1) +set(TARGET_VERSION_MINOR 0) +set(TARGET_VERSION_PATCH 0) set_property(GLOBAL PROPERTY VERSION ${TARGET_VERSION_MAJOR}.${TARGET_VERSION_MINOR}.${TARGET_VERSION_PATCH}) diff --git a/src/edb.cpp b/src/edb.cpp index 9d6a46f92..d3dc00ad8 100644 --- a/src/edb.cpp +++ b/src/edb.cpp @@ -92,7 +92,7 @@ namespace { namespace edb { -const char version[] = "0.9.22"; +const char version[] = "1.0.0"; namespace internal {