Skip to content

Commit db82c64

Browse files
authored
Merge pull request #52 from isaacus-dev/release-please--branches--main--changes--next--components--isaacus
release: 0.13.0
2 parents e47e077 + fd6ff59 commit db82c64

File tree

9 files changed

+19
-11
lines changed

9 files changed

+19
-11
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.12.1"
2+
".": "0.13.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: 5
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-33eb383de2961937f7821f279eac79d884a36666e9627d155b1101ab3fd97ce4.yml
3-
openapi_spec_hash: ad00c3677c87aef537f722a542d29280
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-d499915d5c9d28ffae10a108d7655c026676b21d3b34f07ead24c7d50c546633.yml
3+
openapi_spec_hash: d91d2843e3799463b60832553d4faf70
44
config_hash: 1d77b499f5b4f2dc6986fdd5936d18ef

CHANGELOG.md

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

3+
## 0.13.0 (2026-02-03)
4+
5+
Full Changelog: [v0.12.1...v0.13.0](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.12.1...v0.13.0)
6+
7+
### Features
8+
9+
* **api:** remove -preview from model name ([21ad5e0](https://github.com/isaacus-dev/isaacus-typescript/commit/21ad5e04ee04e83412dd7f7192fb7b2bf10d658e))
10+
311
## 0.12.1 (2026-02-03)
412

513
Full Changelog: [v0.12.0...v0.12.1](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.12.0...v0.12.1)

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.12.1",
3+
"version": "0.13.0",
44
"description": "The official TypeScript library for the Isaacus API",
55
"author": "Isaacus <support@isaacus.com>",
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.12.1",
3+
"version": "0.13.0",
44
"description": "The official MCP Server for the Isaacus API",
55
"author": "Isaacus <support@isaacus.com>",
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
@@ -21,7 +21,7 @@ export const newMcpServer = () =>
2121
new McpServer(
2222
{
2323
name: 'isaacus_api',
24-
version: '0.12.1',
24+
version: '0.13.0',
2525
},
2626
{ capabilities: { tools: {}, logging: {} } },
2727
);

src/resources/enrichments.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export class Enrichments extends APIResource {
1111
* @example
1212
* ```ts
1313
* const enrichmentResponse = await client.enrichments.create({
14-
* model: 'kanon-2-enricher-preview',
14+
* model: 'kanon-2-enricher',
1515
* texts: [
1616
* '1.5 You (the "User") agree to be bound by these Terms.',
1717
* ],
@@ -1654,7 +1654,7 @@ export interface EnrichmentCreateParams {
16541654
* The ID of the [model](https://docs.isaacus.com/models#enrichment) to use for
16551655
* enrichment.
16561656
*/
1657-
model: 'kanon-2-enricher-preview';
1657+
model: 'kanon-2-enricher';
16581658

16591659
/**
16601660
* A text or array of texts to be enriched, each containing at least one

src/version.ts

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

tests/api-resources/enrichments.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe('resource enrichments', () => {
1111
// Prism tests are disabled
1212
test.skip('create: only required params', async () => {
1313
const responsePromise = client.enrichments.create({
14-
model: 'kanon-2-enricher-preview',
14+
model: 'kanon-2-enricher',
1515
texts: ['1.5 You (the "User") agree to be bound by these Terms.'],
1616
});
1717
const rawResponse = await responsePromise.asResponse();
@@ -26,7 +26,7 @@ describe('resource enrichments', () => {
2626
// Prism tests are disabled
2727
test.skip('create: required and optional params', async () => {
2828
const response = await client.enrichments.create({
29-
model: 'kanon-2-enricher-preview',
29+
model: 'kanon-2-enricher',
3030
texts: ['1.5 You (the "User") agree to be bound by these Terms.'],
3131
overflow_strategy: null,
3232
});

0 commit comments

Comments
 (0)