Skip to content

Commit accf4df

Browse files
authored
version: update v5 to 5.0.6 (#2655)
1 parent 09f08f9 commit accf4df

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ cmake_policy(SET CMP0091 NEW)
2323

2424
# Check if VERSION is provided externally, otherwise default to 5.0.3
2525
if(NOT DEFINED PROJECT_VERSION)
26-
set(PROJECT_VERSION "5.0.5")
26+
set(PROJECT_VERSION "5.0.6")
2727
endif()
2828

2929
# Use PROJECT_VERSION directly for CPack

ChangeLog

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
This file details the changelog of Capstone.
22

3+
--------------------------------
4+
Version 5.0.6: March 23th, 2025
5+
6+
## What's Changed
7+
* V5 - Fix sdist build and add CI job for testing it. by @Rot127 in https://github.com/capstone-engine/capstone/pull/2623
8+
* Build Tarball before DEB/RPM package. by @Rot127 in https://github.com/capstone-engine/capstone/pull/2626
9+
* Fix cmake error when build with capstone as submodule by @WerWolv in https://github.com/capstone-engine/capstone/pull/2619
10+
* [v5] Tms32c64x little endian by @Rot127 in https://github.com/capstone-engine/capstone/pull/2649
11+
12+
## New Contributors
13+
* @WerWolv made their first contribution in https://github.com/capstone-engine/capstone/pull/2619
14+
315
--------------------------------
416
Version 5.0.5: January 16th, 2025
517

bindings/python/capstone/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Capstone Python bindings, by Nguyen Anh Quynnh <[email protected]>
22
import os, sys
3-
from platform import system
3+
44
_python2 = sys.version_info[0] < 3
55
if _python2:
66
range = xrange
@@ -180,7 +180,7 @@
180180
# Package version
181181
CS_VERSION_MAJOR = CS_API_MAJOR
182182
CS_VERSION_MINOR = CS_API_MINOR
183-
CS_VERSION_EXTRA = 5
183+
CS_VERSION_EXTRA = 6
184184

185185
__version__ = "%u.%u.%u" %(CS_VERSION_MAJOR, CS_VERSION_MINOR, CS_VERSION_EXTRA)
186186

include/capstone/capstone.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ extern "C" {
5858
// Capstone package version
5959
#define CS_VERSION_MAJOR CS_API_MAJOR
6060
#define CS_VERSION_MINOR CS_API_MINOR
61-
#define CS_VERSION_EXTRA 5
61+
#define CS_VERSION_EXTRA 6
6262

6363
/// Macro for meta programming.
6464
/// Meant for projects using Capstone and need to support multiple

pkgconfig.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PKG_MAJOR = 5
66
PKG_MINOR = 0
77

88
# version bugfix level. Example: PKG_EXTRA = 1
9-
PKG_EXTRA = 5
9+
PKG_EXTRA = 6
1010

1111
# version tag. Examples: rc1, b2, post1 - or just comment out for no tag
1212
PKG_TAG =

0 commit comments

Comments
 (0)