File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,9 +21,9 @@ cmake_policy(SET CMP0042 NEW)
2121# Enable support for MSVC_RUNTIME_LIBRARY
2222cmake_policy (SET CMP0091 NEW )
2323
24- # Check if VERSION is provided externally, otherwise default to 5.0.6
24+ # Check if VERSION is provided externally, otherwise default to 5.0.7
2525if (NOT DEFINED PROJECT_VERSION OR PROJECT_VERSION STREQUAL "" )
26- set (PROJECT_VERSION "5.0.6 " )
26+ set (PROJECT_VERSION "5.0.7 " )
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.7: February 4th, 2026
5+
6+ ## What's Changed
7+ * Backport for 5.0.7 by @scribam in https://github.com/capstone-engine/capstone/pull/2785
8+ * CVE v5 backports by @Rot127 in https://github.com/capstone-engine/capstone/pull/2835
9+
10+ **Full Changelog**: https://github.com/capstone-engine/capstone/compare/5.0.6...5.0.7
11+
312--------------------------------
413Version 5.0.6: March 23th, 2025
514
Original file line number Diff line number Diff line change 180180# Package version
181181CS_VERSION_MAJOR = CS_API_MAJOR
182182CS_VERSION_MINOR = CS_API_MINOR
183- CS_VERSION_EXTRA = 6
183+ CS_VERSION_EXTRA = 7
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 6
61+ #define CS_VERSION_EXTRA 7
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 = 6
9+ PKG_EXTRA = 7
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