Skip to content

Commit 65c57d4

Browse files
committed
fix: bump to 2.0.2, upgrade npm for trusted publishing
1 parent e1b40ca commit 65c57d4

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/publish-github-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
packages: write
3030

3131
env:
32-
STATIC_VERSION: "2.0.1"
32+
STATIC_VERSION: "2.0.2"
3333
BUILD_ID: ${{ github.run_number }}
3434

3535
steps:

.github/workflows/publish-npm-packages.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
with:
2020
node-version: 22
2121

22+
- name: Upgrade npm for trusted publishing
23+
run: npm install -g npm@latest
24+
2225
- name: Install dependencies
2326
run: bun install --frozen-lockfile
2427

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mcp-mongo-server",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "A Model Context Protocol server for MongoDB connections",
55
"private": false,
66
"type": "module",

src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export function createServer(
3838
const server = new Server(
3939
{
4040
name: "mongodb",
41-
version: "2.0.1",
41+
version: "2.0.2",
4242
...options,
4343
},
4444
{

0 commit comments

Comments
 (0)