mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-02-03 21:23:48 +00:00
[PR #2037] [MERGED] fix(rust): Correct version number in CLI parser #2841
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/CCExtractor/ccextractor/pull/2037
Author: @cfsmp3
Created: 1/18/2026
Status: ✅ Merged
Merged: 1/18/2026
Merged by: @cfsmp3
Base:
master← Head:fix/rust-version-number📝 Commits (1)
c175750fix(rust): Correct version number in CLI parser📊 Changes
1 file changed (+1 additions, -1 deletions)
View changed files
📝
src/rust/src/args.rs(+1 -1)📄 Description
Summary
The Rust CLI parser was showing "CCExtractor 1.0" instead of the actual version (0.96.5).
Before:
After:
Root Cause
This was a placeholder value (
#[command(version = "1.0")]) from when the parser was first ported to Rust in August 2024 (commit9340cc7d) that was never updated to match the actual CCExtractor version.Fix
Changed the hardcoded version in
src/rust/src/args.rsfrom "1.0" to "0.96.5" to match the version defined insrc/lib_ccx/lib_ccx.h.Testing
--versionand--helpnow show correct version🤖 Generated with Claude Code
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.