Skip to content

Commit

Permalink
next version = 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aquynh committed Jan 9, 2019
1 parent 19be9b1 commit f1fc51b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cmake_minimum_required(VERSION 2.6)
project(capstone)

set(VERSION_MAJOR 4)
set(VERSION_MINOR 1)
set(VERSION_MAJOR 5)
set(VERSION_MINOR 0)
set(VERSION_PATCH 0)

if(POLICY CMP0042)
Expand Down
6 changes: 3 additions & 3 deletions include/capstone/capstone.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ extern "C" {
#endif

// Capstone API version
#define CS_API_MAJOR 4
#define CS_API_MINOR 1
#define CS_API_MAJOR 5
#define CS_API_MINOR 0

// Version for bleeding edge code of the Github's "next" branch.
// Use this if you want the absolutely latest development code.
// This version number will be bumped up whenever we have a new major change.
#define CS_NEXT_VERSION 4
#define CS_NEXT_VERSION 5

// Capstone package version
#define CS_VERSION_MAJOR CS_API_MAJOR
Expand Down
4 changes: 2 additions & 2 deletions pkgconfig.mk
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# To be used to generate capstone.pc for pkg-config

# version major & minor
PKG_MAJOR = 4
PKG_MINOR = 1
PKG_MAJOR = 5
PKG_MINOR = 0

# version bugfix level. Example: PKG_EXTRA = 1
PKG_EXTRA = 0
Expand Down

0 comments on commit f1fc51b

Please sign in to comment.