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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.4.0] - 2026-01-18

### Changed
- **CORE VERSION**: Now downloads `capiscio-core` v2.4.0

## [2.3.1] - 2025-01-14

### Changed
Expand Down
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"
version = "2.3.1"
version = "2.4.0"
Copy link

Copilot AI Jan 19, 2026

Choose a reason for hiding this comment

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

The version is being updated to 2.4.0 in pyproject.toml, but the version variable in src/capiscio/init.py still references "2.3.1" and needs to be updated to "2.4.0" to maintain consistency across the package. This is important because the init.py version is typically used at runtime for version reporting.

Suggested change
version = "2.4.0"
version = "2.3.1"

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Jan 19, 2026

Choose a reason for hiding this comment

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

The CHANGELOG.md file has no entry for version 2.4.0. Following the pattern of previous releases (as seen with 2.3.1, 2.3.0, etc.), a new entry should be added documenting what changes are included in this release. The [Unreleased] section should be replaced or followed by a [2.4.0] section with the appropriate date and changes.

Suggested change
version = "2.4.0"
version = "2.3.1"

Copilot uses AI. Check for mistakes.
description = "The official CapiscIO CLI tool for validating A2A agents."
readme = "README.md"
requires-python = ">=3.10"
Expand Down