Skip to content

Commit 79f8a89

Browse files
release: 1.14.0
1 parent 4f8b988 commit 79f8a89

7 files changed

Lines changed: 25 additions & 6 deletions

File tree

.release-please-manifest.json

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

CHANGELOG.md

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

3+
## 1.14.0 (2026-03-25)
4+
5+
Full Changelog: [v1.13.0...v1.14.0](https://github.com/runloopai/api-client-ts/compare/v1.13.0...v1.14.0)
6+
7+
### Features
8+
9+
* Add axon rest endpoints for raw SQL access ([#8287](https://github.com/runloopai/api-client-ts/issues/8287)) ([4f8b988](https://github.com/runloopai/api-client-ts/commit/4f8b9884344cbb0c0a1a86d66390086e9b397e2a))
10+
11+
12+
### Bug Fixes
13+
14+
* **broker:** broker protocol renames for clarity / future proof ([#8285](https://github.com/runloopai/api-client-ts/issues/8285)) ([db4eadd](https://github.com/runloopai/api-client-ts/commit/db4eaddd921cb07879fccf9fbb8ca902b9cdbb6b))
15+
16+
17+
### Chores
18+
19+
* **ci:** skip lint on metadata-only changes ([3ea23af](https://github.com/runloopai/api-client-ts/commit/3ea23af6a629913bc7aba2d65c7173df86a817e3))
20+
* **tests:** bump steady to v0.19.7 ([ef57274](https://github.com/runloopai/api-client-ts/commit/ef57274687f6e364bab6055bc9fca40b531c6602))
21+
322
## 1.13.0 (2026-03-25)
423

524
Full Changelog: [v1.12.0...v1.13.0](https://github.com/runloopai/api-client-ts/compare/v1.12.0...v1.13.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@runloop/api-client",
3-
"version": "1.13.0",
3+
"version": "1.14.0",
44
"description": "The official TypeScript library for the Runloop API",
55
"author": "Runloop <support@runloop.ai>",
66
"types": "dist/sdk.d.ts",

packages/mcp-server/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dxt_version": "0.2",
33
"name": "@runloop/api-client-mcp",
4-
"version": "1.13.0",
4+
"version": "1.14.0",
55
"description": "The official MCP Server for the Runloop API",
66
"author": {
77
"name": "Runloop",

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": "@runloop/api-client-mcp",
3-
"version": "1.13.0",
3+
"version": "1.14.0",
44
"description": "The official MCP Server for the Runloop API",
55
"author": "Runloop <support@runloop.ai>",
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
@@ -16,7 +16,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
1616
new McpServer(
1717
{
1818
name: 'runloop_api_client_api',
19-
version: '1.13.0',
19+
version: '1.14.0',
2020
},
2121
{
2222
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 = '1.13.0'; // x-release-please-version
1+
export const VERSION = '1.14.0'; // x-release-please-version

0 commit comments

Comments
 (0)