Skip to content

Commit 0276202

Browse files
authored
Merge pull request #44 from isaacus-dev/release-please--branches--main--changes--next--components--isaacus
release: 0.7.0
2 parents 4e9c114 + 96ea181 commit 0276202

File tree

8 files changed

+22
-9
lines changed

8 files changed

+22
-9
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.6.0"
2+
".": "0.7.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 2
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-213d554b23f35e746460af23dd32bdde471230549ad223518c86d42ea917a180.yml
3-
openapi_spec_hash: 3672281fe031a42fc59e3a2af758a8f8
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-f1ac3a46ba560544c348931204998163a9c5e35c40d6096f4b078e38c2714756.yml
3+
openapi_spec_hash: c9ba9f53c0dabdb703461d772020952f
44
config_hash: 1d15d860383a3f6da1ac388297687cc9

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 0.7.0 (2025-04-19)
4+
5+
Full Changelog: [v0.6.0...v0.7.0](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.6.0...v0.7.0)
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
* **api:** changed how end offsets are computed
10+
11+
### Features
12+
13+
* **api:** changed how end offsets are computed ([c1d9246](https://github.com/isaacus-dev/isaacus-typescript/commit/c1d924631a251f5a91b47eeb9f56a33aa105be5e))
14+
315
## 0.6.0 (2025-04-19)
416

517
Full Changelog: [v0.5.1...v0.6.0](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.5.1...v0.6.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "isaacus",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"description": "The official TypeScript library for the Isaacus API",
55
"author": "Isaacus <[email protected]>",
66
"types": "dist/index.d.ts",

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "isaacus-mcp",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"description": "The official MCP Server for the Isaacus API",
55
"author": "Isaacus <[email protected]>",
66
"types": "dist/index.d.ts",

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export { endpoints } from './tools';
1111
export const server = new McpServer(
1212
{
1313
name: 'isaacus_api',
14-
version: '0.6.0',
14+
version: '0.7.0',
1515
},
1616
{
1717
capabilities: {

src/resources/classifications/universal.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ export namespace UniversalClassification {
6161
export namespace Classification {
6262
export interface Chunk {
6363
/**
64-
* The index of the character in the original text where the chunk ends, beginning
65-
* from `0` (such that, in Python, the chunk is equivalent to `text[start:end+1]`).
64+
* The index of the character immediately after the last character of the chunk in
65+
* the original text, beginning from `0` (such that, in Python, the chunk is
66+
* equivalent to `text[start:end]`).
6667
*/
6768
end: number;
6869

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.6.0'; // x-release-please-version
1+
export const VERSION = '0.7.0'; // x-release-please-version

0 commit comments

Comments
 (0)