Skip to content
Merged
Show file tree
Hide file tree
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"
Copy link

Copilot AI Nov 21, 2025

Choose a reason for hiding this comment

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

The PR description mentions that capiscio-core v1.0.2 introduces breaking changes requiring timeout units. However, there's no documentation update (e.g., CHANGELOG.md, migration guide, or README update) warning users about these breaking changes. Consider adding documentation about the breaking change to help users migrate, especially since this affects the --timeout flag usage.

Suggested change
name = "capiscio"
name = "capiscio"
# v1.0.2 introduces a breaking change: the --timeout flag now requires explicit units (e.g., 10s, 1m).
# Please see the updated README.md and CHANGELOG.md for migration instructions.

Copilot uses AI. Check for mistakes.
version = "2.1.2"
version = "2.1.3"
description = "The official CapiscIO CLI tool for validating A2A agents."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion src/capiscio/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
logger = logging.getLogger(__name__)

# Configuration
CORE_VERSION = "2.1.2" # Matches the python package version
CORE_VERSION = "1.0.2" # The version of the core binary to download
GITHUB_REPO = "capiscio/capiscio-core"
BINARY_NAME = "capiscio"

Expand Down