chore(release): bump to 0.4.5

This commit is contained in:
Peter Steinberger 2025-11-10 13:29:02 +00:00
parent dcc323b212
commit 4ddfcce80e
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
_No changes yet._
## [0.4.4] - 2025-11-10
## [0.4.5] - 2025-11-10
### CLI & runtime
- Fixed the npm `bin` entry so it points to `dist/cli.js` without a leading `./`, keeping the executable in the published tarball and restoring `npx mcporter` functionality. Also bumped the embedded runtime version to 0.4.4 so the CLI reports the correct release.

View File

@ -1,6 +1,6 @@
{
"name": "mcporter",
"version": "0.4.4",
"version": "0.4.5",
"description": "TypeScript runtime and CLI for connecting to configured Model Context Protocol servers.",
"type": "module",
"main": "dist/index.js",

View File

@ -14,7 +14,7 @@ import { closeTransportAndWait } from './runtime-process-utils.js';
import './sdk-patches.js';
const PACKAGE_NAME = 'mcporter';
const CLIENT_VERSION = '0.4.4';
const CLIENT_VERSION = '0.4.5';
const DEFAULT_OAUTH_CODE_TIMEOUT_MS = 60_000;
const OAUTH_CODE_TIMEOUT_MS = parseOAuthTimeout(
process.env.MCPORTER_OAUTH_TIMEOUT_MS ?? process.env.MCPORTER_OAUTH_TIMEOUT