next version = 5.0

This commit is contained in:
Nguyen Anh Quynh 2019-01-09 13:53:17 +08:00
parent 19be9b1a92
commit f1fc51bd09
3 changed files with 7 additions and 7 deletions

View File

@ -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)

View File

@ -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

View File

@ -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