Skip to content

Commit 52c6692

Browse files
authored
Increase version number and update changelog. (#2854)
1 parent 4d90b13 commit 52c6692

5 files changed

Lines changed: 14 additions & 5 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ cmake_policy(SET CMP0042 NEW)
2121
# Enable support for MSVC_RUNTIME_LIBRARY
2222
cmake_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
2525
if(NOT DEFINED PROJECT_VERSION OR PROJECT_VERSION STREQUAL "")
26-
set(PROJECT_VERSION "5.0.6")
26+
set(PROJECT_VERSION "5.0.7")
2727
endif()
2828

2929
# Use PROJECT_VERSION directly for CPack

ChangeLog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
This 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
--------------------------------
413
Version 5.0.6: March 23th, 2025
514

bindings/python/capstone/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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 = 6
183+
CS_VERSION_EXTRA = 7
184184

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

include/capstone/capstone.h

Lines changed: 1 addition & 1 deletion
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 6
61+
#define CS_VERSION_EXTRA 7
6262

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

pkgconfig.mk

Lines changed: 1 addition & 1 deletion
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 = 6
9+
PKG_EXTRA = 7
1010

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

0 commit comments

Comments
 (0)