diff --git a/CHANGELOG.md b/CHANGELOG.md index 50fe6d32..1dab5878 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ Format: [Keep a Changelog](https://keepachangelog.com/) +## [3.4.4] - 2025-11-11 + +### Fixed +- Postinstall symlink creation (fixed require path to shared-manager.js) + +--- + ## [3.4.3] - 2025-11-11 ### Added diff --git a/VERSION b/VERSION index 6cb9d3dd..f9892605 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.4.3 +3.4.4 diff --git a/package.json b/package.json index f36cf686..81be578b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@kaitranntt/ccs", - "version": "3.4.3", + "version": "3.4.4", "description": "Claude Code Switch - Instant profile switching between Claude Sonnet 4.5 and GLM 4.6", "keywords": [ "cli", diff --git a/scripts/postinstall.js b/scripts/postinstall.js index cacc450a..38b0ab8f 100755 --- a/scripts/postinstall.js +++ b/scripts/postinstall.js @@ -93,7 +93,7 @@ function createConfigFiles() { // Migrate from v3.1.1 to v3.2.0 (symlink architecture) console.log(''); try { - const SharedManager = require('../bin/shared-manager'); + const SharedManager = require('../bin/management/shared-manager'); const sharedManager = new SharedManager(); sharedManager.migrateFromV311(); sharedManager.ensureSharedDirectories();