bump version to 4.1

This commit is contained in:
Nguyen Anh Quynh 2018-12-16 20:18:20 +08:00
parent 3c6216dfd5
commit c458d728ac
4 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.6)
project(capstone)
set(VERSION_MAJOR 4)
set(VERSION_MINOR 0)
set(VERSION_MINOR 1)
set(VERSION_PATCH 0)
if(POLICY CMP0042)

View File

@ -130,7 +130,7 @@ __all__ = [
# API version
CS_API_MAJOR = 4
CS_API_MINOR = 0
CS_API_MINOR = 1
# Package version
CS_VERSION_MAJOR = CS_API_MAJOR

View File

@ -48,7 +48,7 @@ extern "C" {
// Capstone API version
#define CS_API_MAJOR 4
#define CS_API_MINOR 0
#define CS_API_MINOR 1
// Version for bleeding edge code of the Github's "next" branch.
// Use this if you want the absolutely latest development code.

View File

@ -3,7 +3,7 @@
# version major & minor
PKG_MAJOR = 4
PKG_MINOR = 0
PKG_MINOR = 1
# version bugfix level. Example: PKG_EXTRA = 1
PKG_EXTRA = 0