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

## [Unreleased]

## [2.4.0] - 2026-01-18
## [2.5.0] - 2026-03-16

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

## [2.3.1] - 2025-01-14
### Fixed
- `CORE_VERSION` was stuck at v2.2.0 since the v2.2.0 release, meaning v2.3.0–v2.4.0 all downloaded `capiscio-core` v2.2.0 despite their changelog entries stating otherwise. This release correctly aligns the downloaded binary version.

## [2.4.0] - 2026-01-18

### Changed
- **CORE VERSION**: Now downloads `capiscio-core` v2.3.1
- Bump package version to 2.4.0
- **Note:** `CORE_VERSION` was incorrectly left at v2.2.0 (fixed in v2.5.0)

## [2.3.1] - 2025-01-14

### Fixed
- Aligned all version references across package metadata
- **Note:** `CORE_VERSION` was incorrectly left at v2.2.0 (fixed in v2.5.0)

## [2.3.0] - 2025-01-13

Expand All @@ -29,7 +36,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **CLI Command Syntax**: Fixed incorrect command syntax in documentation

### Changed
- **CORE VERSION**: Now downloads `capiscio-core` v2.3.0
- Bump package version to 2.3.0
- **Note:** `CORE_VERSION` was incorrectly left at v2.2.0 (fixed in v2.5.0)

## [2.2.0] - 2025-12-10

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.4.0"
version = "2.5.0"
description = "The official CapiscIO CLI tool for validating A2A agents."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
4 changes: 3 additions & 1 deletion src/capiscio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""CapiscIO CLI package."""

__version__ = "2.3.1"
from importlib.metadata import version

__version__ = version("capiscio")
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.2.0" # The version of the core binary to download
CORE_VERSION = "2.5.0" # The version of the core binary to download
GITHUB_REPO = "capiscio/capiscio-core"
BINARY_NAME = "capiscio"

Expand Down
Loading