Skip to content

Commit e1b40ca

Browse files
committed
fix: bump to 2.0.1, fix npm trusted publishing registry
1 parent e03ccd2 commit e1b40ca

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
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.0"
32+
STATIC_VERSION: "2.0.1"
3333
BUILD_ID: ${{ github.run_number }}
3434

3535
steps:

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
- uses: actions/setup-node@v4
1919
with:
2020
node-version: 22
21-
registry-url: https://registry.npmjs.org/
2221

2322
- name: Install dependencies
2423
run: bun install --frozen-lockfile
@@ -27,4 +26,4 @@ jobs:
2726
run: bun run build
2827

2928
- name: Publish to npm
30-
run: npm publish --access public --provenance
29+
run: npm publish --access public --provenance --registry https://registry.npmjs.org/

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.0",
3+
"version": "2.0.1",
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.0",
41+
version: "2.0.1",
4242
...options,
4343
},
4444
{

0 commit comments

Comments
 (0)