chore: bump version to 2.4.0 (align with capiscio-core)#5
Conversation
There was a problem hiding this comment.
Pull request overview
This PR synchronizes the capiscio-mcp package version with capiscio-core v2.4.0, changing from an independent versioning strategy (0.1.0) to aligned versioning.
Changes:
- Version bumped from 0.1.0 to 2.4.0 in pyproject.toml
- CHANGELOG.md updated with new version entry for 2.4.0
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| pyproject.toml | Updated package version from 0.1.0 to 2.4.0 |
| CHANGELOG.md | Added version 2.4.0 entry documenting version alignment with capiscio-core |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| ## [2.4.0] - 2026-02-04 | ||
|
|
||
| ### Changed | ||
| - **Version Alignment**: Synchronized version with capiscio-core v2.4.0 |
There was a problem hiding this comment.
The CHANGELOG links section needs to be updated to include a reference for the new [2.4.0] version. Following the Keep a Changelog format, add a line like:
[2.4.0]: https://github.com/capiscio/capiscio-mcp-python/releases/tag/v2.4.0
Also, the [Unreleased] link should be updated to compare from v2.4.0 instead of v0.1.0:
[Unreleased]: v2.4.0...HEAD
| [project] | ||
| name = "capiscio-mcp" | ||
| version = "0.1.0" | ||
| version = "2.4.0" |
There was a problem hiding this comment.
The MCP_VERSION constant in capiscio_mcp/_core/version.py needs to be updated from "0.1.0" to "2.4.0" to match the version in pyproject.toml. This constant is exported as __version__ in the package's __init__.py and is also used for version compatibility checks when connecting to capiscio-core.
| ## [2.4.0] - 2026-02-04 | ||
|
|
||
| ### Changed | ||
| - **Version Alignment**: Synchronized version with capiscio-core v2.4.0 |
There was a problem hiding this comment.
The CHANGELOG references "Requires capiscio-core >= 2.5.0, < 3.0.0" for version 0.1.0, but the PR description states this version bump aligns with capiscio-core v2.4.0. This creates an inconsistency - if the package is aligning with capiscio-core 2.4.0, the minimum version requirement should be updated to 2.4.0, or clarification is needed on the actual compatible core version range.
Synchronizes version with capiscio-core v2.4.0 release.
This package uses capiscio-core for badge operations, so versions are kept in sync.