Skip to content

Commit

Permalink
version bump to 1.0.0. A LOT has changed since the last release, and …
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
eteran committed May 4, 2018
1 parent b9438b8 commit 0d1270d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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})


Expand Down
2 changes: 1 addition & 1 deletion src/edb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ namespace {

namespace edb {

const char version[] = "0.9.22";
const char version[] = "1.0.0";

namespace internal {

Expand Down

0 comments on commit 0d1270d

Please sign in to comment.