From 51e61d9e41cadce03e5a599c392f4eb0824932f4 Mon Sep 17 00:00:00 2001 From: Jamkris Date: Mon, 13 Apr 2026 15:33:27 +0900 Subject: [PATCH 1/2] chore: bump version to 1.2.11 --- package.json | 2 +- src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 09eec39..7ee9f60 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "git-env-manager", - "version": "1.2.9", + "version": "1.2.11", "description": "Multi-git-profile manager with SSH key integration", "type": "module", "bin": { diff --git a/src/index.ts b/src/index.ts index e0b1e99..f544932 100644 --- a/src/index.ts +++ b/src/index.ts @@ -24,7 +24,7 @@ try { // Keep default locale if config is unreadable } -const VERSION = '1.2.9'; +const VERSION = '1.2.11'; const program = new Command(); From 6d69a6f9e5369dbfca7cf401f38ff40a072f894b Mon Sep 17 00:00:00 2001 From: Jamkris Date: Mon, 13 Apr 2026 15:33:47 +0900 Subject: [PATCH 2/2] fix: change update command from npm install to npm update --- src/i18n/locales/en.ts | 2 +- src/i18n/locales/ko.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i18n/locales/en.ts b/src/i18n/locales/en.ts index 01745b0..2b92986 100644 --- a/src/i18n/locales/en.ts +++ b/src/i18n/locales/en.ts @@ -107,7 +107,7 @@ export const en: Messages = { // Update check updateAvailable: (current, latest) => `Update available: ${current} → ${latest}`, - updateCommand: 'Run `npm install -g git-env-manager` to update.', + updateCommand: 'Run `npm update -g git-env-manager` to update.', // General unexpectedError: 'An unexpected error occurred.', diff --git a/src/i18n/locales/ko.ts b/src/i18n/locales/ko.ts index 8c3edcb..1aaaf3b 100644 --- a/src/i18n/locales/ko.ts +++ b/src/i18n/locales/ko.ts @@ -107,7 +107,7 @@ export const ko: Messages = { // Update check updateAvailable: (current, latest) => `새 버전이 있습니다: ${current} → ${latest}`, - updateCommand: '업데이트: npm install -g git-env-manager', + updateCommand: '업데이트: npm update -g git-env-manager', // General unexpectedError: '예상치 못한 오류가 발생했습니다.',