diff --git a/CHANGELOG.md b/CHANGELOG.md index c192383..7cc2548 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package-lock.json b/package-lock.json index f3ba88a..c6b806c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "capiscio", - "version": "2.5.0", + "version": "2.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "capiscio", - "version": "2.5.0", + "version": "2.6.0", "license": "Apache-2.0", "dependencies": { "axios": "^1.13.2", diff --git a/package.json b/package.json index 0b37850..d83ecf6 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/index.ts b/src/index.ts index 6a8d96b..0dfcbb8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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'; \ No newline at end of file diff --git a/src/utils/binary-manager.ts b/src/utils/binary-manager.ts index 2cfa3c2..353faea 100644 --- a/src/utils/binary-manager.ts +++ b/src/utils/binary-manager.ts @@ -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 { diff --git a/tests/unit/cli.test.ts b/tests/unit/cli.test.ts index 081999f..175c68f 100644 --- a/tests/unit/cli.test.ts +++ b/tests/unit/cli.test.ts @@ -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 () => {