diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bcd0522..e7ca613 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.6.0" + ".": "0.7.0" } diff --git a/.stats.yml b/.stats.yml index 43b9aae..da5fed2 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 2 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-213d554b23f35e746460af23dd32bdde471230549ad223518c86d42ea917a180.yml -openapi_spec_hash: 3672281fe031a42fc59e3a2af758a8f8 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-f1ac3a46ba560544c348931204998163a9c5e35c40d6096f4b078e38c2714756.yml +openapi_spec_hash: c9ba9f53c0dabdb703461d772020952f config_hash: 1d15d860383a3f6da1ac388297687cc9 diff --git a/CHANGELOG.md b/CHANGELOG.md index 97b6468..c08d22b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 0.7.0 (2025-04-19) + +Full Changelog: [v0.6.0...v0.7.0](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.6.0...v0.7.0) + +### ⚠ BREAKING CHANGES + +* **api:** changed how end offsets are computed + +### Features + +* **api:** changed how end offsets are computed ([c1d9246](https://github.com/isaacus-dev/isaacus-typescript/commit/c1d924631a251f5a91b47eeb9f56a33aa105be5e)) + ## 0.6.0 (2025-04-19) Full Changelog: [v0.5.1...v0.6.0](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.5.1...v0.6.0) diff --git a/package.json b/package.json index cfd1939..cfaddeb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "isaacus", - "version": "0.6.0", + "version": "0.7.0", "description": "The official TypeScript library for the Isaacus API", "author": "Isaacus ", "types": "dist/index.d.ts", diff --git a/packages/mcp-server/package.json b/packages/mcp-server/package.json index 5771ec0..9f88526 100644 --- a/packages/mcp-server/package.json +++ b/packages/mcp-server/package.json @@ -1,6 +1,6 @@ { "name": "isaacus-mcp", - "version": "0.6.0", + "version": "0.7.0", "description": "The official MCP Server for the Isaacus API", "author": "Isaacus ", "types": "dist/index.d.ts", diff --git a/packages/mcp-server/src/server.ts b/packages/mcp-server/src/server.ts index 6423a0b..a6153e5 100644 --- a/packages/mcp-server/src/server.ts +++ b/packages/mcp-server/src/server.ts @@ -11,7 +11,7 @@ export { endpoints } from './tools'; export const server = new McpServer( { name: 'isaacus_api', - version: '0.6.0', + version: '0.7.0', }, { capabilities: { diff --git a/src/resources/classifications/universal.ts b/src/resources/classifications/universal.ts index 7a74032..620d6a7 100644 --- a/src/resources/classifications/universal.ts +++ b/src/resources/classifications/universal.ts @@ -61,8 +61,9 @@ export namespace UniversalClassification { export namespace Classification { export interface Chunk { /** - * The index of the character in the original text where the chunk ends, beginning - * from `0` (such that, in Python, the chunk is equivalent to `text[start:end+1]`). + * The index of the character immediately after the last character of the chunk in + * the original text, beginning from `0` (such that, in Python, the chunk is + * equivalent to `text[start:end]`). */ end: number; diff --git a/src/version.ts b/src/version.ts index 30c2817..d9da9f7 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.6.0'; // x-release-please-version +export const VERSION = '0.7.0'; // x-release-please-version