Skip to content

Commit e28de83

Browse files
release: 4.13.0
1 parent c2bd0a4 commit e28de83

File tree

6 files changed

+18
-5
lines changed

6 files changed

+18
-5
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-
".": "4.12.0"
2+
".": "4.13.0"
33
}

CHANGELOG.md

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

3+
## 4.13.0 (2026-02-19)
4+
5+
Full Changelog: [v4.12.0...v4.13.0](https://github.com/supermemoryai/sdk-ts/compare/v4.12.0...v4.13.0)
6+
7+
### Features
8+
9+
* **api:** api update ([c2bd0a4](https://github.com/supermemoryai/sdk-ts/commit/c2bd0a47042f73f33fe17faaf1900fced7f52e68))
10+
11+
12+
### Chores
13+
14+
* **internal:** cache fetch instruction calls in MCP server ([96bdbba](https://github.com/supermemoryai/sdk-ts/commit/96bdbba9d1c268d7a359eff759626ca0350df271))
15+
316
## 4.12.0 (2026-02-18)
417

518
Full Changelog: [v4.11.1...v4.12.0](https://github.com/supermemoryai/sdk-ts/compare/v4.11.1...v4.12.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "supermemory",
3-
"version": "4.12.0",
3+
"version": "4.13.0",
44
"description": "The official TypeScript library for the Supermemory API",
55
"author": "Supermemory <dhravya@supermemory.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": "supermemory-mcp",
3-
"version": "4.12.0",
3+
"version": "4.13.0",
44
"description": "The official MCP Server for the Supermemory API",
55
"author": "Supermemory <dhravya@supermemory.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
@@ -20,7 +20,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
2020
new McpServer(
2121
{
2222
name: 'supermemory_api',
23-
version: '4.12.0',
23+
version: '4.13.0',
2424
},
2525
{
2626
instructions: await getInstructions(stainlessApiKey),

src/version.ts

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

0 commit comments

Comments
 (0)