File tree Expand file tree Collapse file tree 5 files changed +17
-5
lines changed
Expand file tree Collapse file tree 5 files changed +17
-5
lines changed Original file line number Diff line number Diff 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
2525if (NOT DEFINED PROJECT_VERSION)
26- set (PROJECT_VERSION "5.0.5 " )
26+ set (PROJECT_VERSION "5.0.6 " )
2727endif ()
2828
2929# Use PROJECT_VERSION directly for CPack
Original file line number Diff line number Diff line change 11This 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--------------------------------
416Version 5.0.5: January 16th, 2025
517
Original file line number Diff line number Diff line change 11# Capstone Python bindings, by Nguyen Anh Quynnh <aquynh@gmail.com>
22import os , sys
3- from platform import system
3+
44_python2 = sys .version_info [0 ] < 3
55if _python2 :
66 range = xrange
180180# Package version
181181CS_VERSION_MAJOR = CS_API_MAJOR
182182CS_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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ PKG_MAJOR = 5
66PKG_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
1212PKG_TAG =
You can’t perform that action at this time.
0 commit comments