Skip to content

Commit 0225758

Browse files
authored
Release 5.0.9 (#2934)
1 parent d452e06 commit 0225758

4 files changed

Lines changed: 13 additions & 4 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.8
24+
# Check if VERSION is provided externally, otherwise default to 5.0.9
2525
if(NOT DEFINED PROJECT_VERSION OR PROJECT_VERSION STREQUAL "")
26-
set(PROJECT_VERSION "5.0.8")
26+
set(PROJECT_VERSION "5.0.9")
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.9: May 28th, 2026
5+
6+
## What's Changed
7+
8+
* Set the correct CS_VERSION_EXTRA version number in capstone.h
9+
* Fix reachable OOB read in M68KInstPrinter.c (GHSA-jrw4-wj52-2vw8).
10+
* Fix invalid decoding for malformed br_table instruction in WASM (GHSA-5m9f-vqcm-g5pr).
11+
312
--------------------------------
413
Version 5.0.8: May 23th, 2026
514

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 7
61+
#define CS_VERSION_EXTRA 9
6262

6363
// Pre-release identifier.
6464
// A stable release.

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 = 8
9+
PKG_EXTRA = 9
1010

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

0 commit comments

Comments
 (0)