Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "capiscio-mcp"
version = "2.5.0"
version = "2.6.0"
Copy link

Copilot AI Mar 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The package version is being bumped to 2.6.0 here, but the library’s public runtime version (capiscio_mcp.__version__ / MCP_VERSION) is defined in capiscio_mcp/_core/version.py and is currently "0.1.0". This means users (and the gRPC client_version sent to capiscio-core) will still report 0.1.0 after publishing 2.6.0. Update MCP_VERSION (and any related docs/tests) to match the package version, or document/enforce the intended decoupling if that’s deliberate.

Suggested change
version = "2.6.0"
version = "0.1.0"

Copilot uses AI. Check for mistakes.
description = "Trust badges for MCP tool calls - RFC-006 & RFC-007 implementation"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
Loading