Update version numbers in configuration files to reflect new release: change Deno project version to 0.0.1 in deno.json and update package version to 0.1.0 in package.json. Adjust version constant in utils.ts accordingly.

This commit is contained in:
Minoru Mizutani 2025-04-29 11:51:31 +09:00
parent 9d8c52eb02
commit 01a238a341
No known key found for this signature in database
3 changed files with 7 additions and 7 deletions

View file

@ -10,7 +10,7 @@ import crypto from "node:crypto";
import createServer from "./deno-http-server.ts";
// Package version from deno.json (set a constant for now)
export const MCP_REMOTE_VERSION = "1.0.0"; // TODO: Find better way to get version in Deno
export const MCP_REMOTE_VERSION = "0.0.1"; // TODO: Find better way to get version in Deno
const pid = Deno.pid;
export function log(str: string, ...rest: unknown[]) {