diff --git a/.gitignore b/.gitignore index 7dd7656..31c0ccf 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,3 @@ src/*.js.map # TypeDoc generated documentation src/docs/ - -.release-please-manifest.json -release-please-config.json diff --git a/.prettierignore b/.prettierignore index 30d6aca..7ec938b 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1 +1,5 @@ src/examples/README.md + +.release-please-manifest.json +release-please-config.json +CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d04f223..bcd0522 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.1" -} \ No newline at end of file + ".": "0.6.0" +} diff --git a/CHANGELOG.md b/CHANGELOG.md index 2113466..c88b304 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.6.0](https://github.com/agentclientprotocol/typescript-sdk/compare/v0.5.1...v0.6.0) (2025-12-01) + +Updates to the latest version of the ACP JSON Schema, [v0.8.0](https://github.com/agentclientprotocol/agent-client-protocol/releases/tag/v0.8.0) + +This update provides much improved schema interfaces. The migration should be minimal because in TypeScript the interfaces should be functionally equivalent. But there may be some areas where the types are now more informative to the compiler and will hopefully help you catch errors earlier. + ## 0.5.1 (2025-10-24) - Add ability for agents and clients to provide information about their implementation diff --git a/package-lock.json b/package-lock.json index 4330fcd..69a7118 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@agentclientprotocol/sdk", - "version": "0.5.1", + "version": "0.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@agentclientprotocol/sdk", - "version": "0.5.1", + "version": "0.6.0", "license": "Apache-2.0", "devDependencies": { "@hey-api/openapi-ts": "^0.88.0", diff --git a/package.json b/package.json index 28148df..b8caf7e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@agentclientprotocol/sdk", - "version": "0.5.1", + "version": "0.6.0", "publishConfig": { "access": "public" },