diff --git a/package.json b/package.json index 1099064..88d6096 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "1.0.0", + "version": "1.0.1", "type": "module", "main": "./dist/index.js", "engines": { diff --git a/src/routes/version.ts b/src/routes/version.ts index 8275467..f5f7349 100644 --- a/src/routes/version.ts +++ b/src/routes/version.ts @@ -4,7 +4,6 @@ export const Version = process.env['npm_package_version'] export function init(bot: Bot) { bot.command('/version', async (ctx) => { - // ctx.reply('Version: ' + version) ctx.reply(`Version: ${Version}`) }) }