Skip to content

Commit 0d1270d

Browse files
committed
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.
1 parent b9438b8 commit 0d1270d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ include_directories(${CAPSTONE_INCLUDE_DIRS})
3535
link_directories(${CAPSTONE_LIBRARY_DIRS})
3636

3737
# eventually use this to generate version.h?
38-
set(TARGET_VERSION_MAJOR 0)
39-
set(TARGET_VERSION_MINOR 9)
40-
set(TARGET_VERSION_PATCH 22)
38+
set(TARGET_VERSION_MAJOR 1)
39+
set(TARGET_VERSION_MINOR 0)
40+
set(TARGET_VERSION_PATCH 0)
4141
set_property(GLOBAL PROPERTY VERSION ${TARGET_VERSION_MAJOR}.${TARGET_VERSION_MINOR}.${TARGET_VERSION_PATCH})
4242

4343

src/edb.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ namespace {
9292

9393
namespace edb {
9494

95-
const char version[] = "0.9.22";
95+
const char version[] = "1.0.0";
9696

9797
namespace internal {
9898

0 commit comments

Comments
 (0)