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.6.0] - 2026-03-27

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

## [2.5.0] - 2026-03-16

### Changed
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "capiscio",
"version": "2.5.0",
"version": "2.6.0",
"description": "The official CapiscIO CLI tool for validating A2A agents",
"keywords": [
"a2a",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* ```
*/

export const version = '2.5.0';
export const version = '2.6.0';

// Re-export binary manager for advanced users who want to manage the binary
export { BinaryManager } from './utils/binary-manager';
2 changes: 1 addition & 1 deletion src/utils/binary-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const REPO_OWNER = 'capiscio';
const REPO_NAME = 'capiscio-core';

// Allow version override via env var or package.json
const DEFAULT_VERSION = 'v2.5.0';
const DEFAULT_VERSION = 'v2.6.0';
const VERSION = process.env.CAPISCIO_CORE_VERSION || DEFAULT_VERSION;

export class BinaryManager {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ describe('CLI Package', () => {

it('should export version', async () => {
const { version } = await import('../../src/index');
expect(version).toBe('2.5.0');
expect(version).toBe('2.6.0');
});

it('should export BinaryManager', async () => {
Expand Down
Loading