Skip to content

Commit 0b851c0

Browse files
release: 3.0.0
1 parent 6a9188c commit 0b851c0

7 files changed

Lines changed: 237 additions & 8 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-
".": "2.7.4"
2+
".": "3.0.0"
33
}

CHANGELOG.md

Lines changed: 225 additions & 0 deletions
Large diffs are not rendered by default.

package.json

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

packages/mcp-server/manifest.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dxt_version": "0.2",
33
"name": "@julep/sdk-mcp",
4-
"version": "2.7.4",
4+
"version": "3.0.0",
55
"description": "The official MCP Server for the Julep API",
66
"author": {
77
"name": "Julep",
@@ -18,7 +18,9 @@
1818
"entry_point": "index.js",
1919
"mcp_config": {
2020
"command": "node",
21-
"args": ["${__dirname}/index.js"],
21+
"args": [
22+
"${__dirname}/index.js"
23+
],
2224
"env": {
2325
"JULEP_API_KEY": "${user_config.JULEP_API_KEY}"
2426
}
@@ -39,5 +41,7 @@
3941
"node": ">=18.0.0"
4042
}
4143
},
42-
"keywords": ["api"]
44+
"keywords": [
45+
"api"
46+
]
4347
}

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": "@julep/sdk-mcp",
3-
"version": "2.7.4",
3+
"version": "3.0.0",
44
"description": "The official MCP Server for the Julep API",
55
"author": "Julep <[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
@@ -25,7 +25,7 @@ export const newMcpServer = async ({
2525
new McpServer(
2626
{
2727
name: 'julep_sdk_api',
28-
version: '2.7.4',
28+
version: '3.0.0',
2929
},
3030
{
3131
instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),

src/version.ts

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

0 commit comments

Comments
 (0)