Skip to content

Commit 5cca005

Browse files
authored
Update to v5.0.3 (#2451)
* Prepare for release v5.0.2 * Update ChangeLog for v5.0.2 * Update Python package build action * [CI] Downgrade upload-artifact tp v3 * update changelog * [CI] downguard actions/download-artifact to v3 * Update version to v5.0.3 * update python bindings version
1 parent 828268c commit 5cca005

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

CMakeLists.txt

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

2424
project(capstone
25-
VERSION 5.0.2
25+
VERSION 5.0.3
2626
)
2727

2828
if (MSVC)

CREDITS.TXT

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ This file credits all the contributors of the Capstone engine project.
33
Key developers
44
==============
55
Nguyen Anh Quynh <aquynh -at- gmail.com>
6-
Chenxu Wu (kabeor) [email protected]
6+
Chenxu Wu (kabeor) <kabeor00 -at- gmail.com>
77

88

99
Past key developers

ChangeLog

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

3+
--------------------------------
4+
Version 5.0.2: August 20th, 2024
5+
6+
## What's Changed
7+
* [v5] Updates and fixes to the Python wheel builder workflow by @Rot127 in https://github.com/capstone-engine/capstone/pull/2440
8+
* Relocatable package v5 by @mrexodia in https://github.com/capstone-engine/capstone/pull/2447
9+
* [v5] Wheel build fixes: manylinux1, trigger upload on release, Linux AArch64 by @Rot127 in https://github.com/capstone-engine/capstone/pull/2443
10+
311
--------------------------------
412
Version 5.0.2: August 12th, 2024
513

bindings/python/capstone/__init__.py

+1-1
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 = 2
183+
CS_VERSION_EXTRA = 3
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 2
61+
#define CS_VERSION_EXTRA 3
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 = 2
9+
PKG_EXTRA = 3
1010

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

0 commit comments

Comments
 (0)