Conversation
There was a problem hiding this comment.
Pull request overview
Prepares the capiscio Python CLI wrapper for the v2.5.0 release by aligning the package version and the downloaded capiscio-core binary version, and documenting the release in the changelog.
Changes:
- Bump PyPI package version to
2.5.0. - Update
CORE_VERSIONto downloadcapiscio-corev2.5.0. - Add a
2.5.0changelog entry describing the update/fix.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/capiscio/manager.py | Updates CORE_VERSION so the wrapper downloads capiscio-core v2.5.0. |
| pyproject.toml | Bumps the published package version to 2.5.0. |
| CHANGELOG.md | Adds release notes for v2.5.0 describing the version alignment fix. |
You can also share your feedback on Copilot code review. Take the survey.
CHANGELOG.md
Outdated
| ## [2.5.0] - 2026-03-16 | ||
|
|
||
| ### Changed | ||
| - **CORE VERSION**: Now downloads `capiscio-core` v2.5.0 | ||
|
|
||
| ### Fixed | ||
| - `CORE_VERSION` was stuck at v2.2.0, now correctly tracks release version |
|
✅ All checks passed! Ready for review. |
|
✅ All checks passed! Ready for review. |
CORE_VERSION was stuck at 2.2.0 from v2.2.0 through v2.4.0. The old changelog entries falsely claimed each release downloaded its matching core version. Corrected per Copilot code review feedback.
|
✅ All checks passed! Ready for review. |
There was a problem hiding this comment.
Pull request overview
Bumps the Python wrapper package to v2.5.0 and aligns the downloaded capiscio-core binary version accordingly for the release.
Changes:
- Bump wrapper package version to
2.5.0inpyproject.toml - Update
CORE_VERSIONto2.5.0so the wrapper downloads the correct core binary - Update
CHANGELOG.mdwith a new2.5.0entry and notes about the priorCORE_VERSIONmismatch
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| src/capiscio/manager.py | Updates CORE_VERSION to download capiscio-core v2.5.0 |
| pyproject.toml | Bumps published package version to 2.5.0 |
| CHANGELOG.md | Adds v2.5.0 release notes and clarifies prior versioning mismatch |
You can also share your feedback on Copilot code review. Take the survey.
Replace hardcoded __version__ = '2.3.1' with importlib.metadata.version() so it stays in sync with pyproject.toml automatically.
|
✅ All checks passed! Ready for review. |
Version bump and changelog update for v2.5.0 release. CORE_VERSION fixed from 2.2.0 to 2.5.0.