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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.6.0"
".": "0.7.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <support@isaacus.com>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -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 <support@isaacus.com>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
5 changes: 3 additions & 2 deletions src/resources/classifications/universal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.6.0'; // x-release-please-version
export const VERSION = '0.7.0'; // x-release-please-version