Skip to content

Commit 2130855

Browse files
chore(release): 5.6.0 [skip ci]
# [5.6.0](v5.5.0...v5.6.0) (2025-12-04) ### Bug Fixes * **cliproxy:** clarify paid tier messaging to reference google account tier ([848fbf4](848fbf4)) * **cliproxy:** correct model selection default and update fallback version ([fdb8761](fdb8761)) * **dev-release:** find next available dev version from npm ([482f3a7](482f3a7)) * **doctor:** use actual installed clipproxy version instead of hardcoded ([e3edcf6](e3edcf6)) * **prompt:** strip bracketed paste escape sequences from password input ([df31ffc](df31ffc)) * **update:** add --help support and --dev alias for update command ([b18163c](b18163c)) ### Features * **cliproxy:** add model catalog with configuration management ([4654c15](4654c15)) * **cliproxy:** add version management command ([7e07615](7e07615)) * **cliproxy:** add warning for broken claude proxy models on agy ([0e11426](0e11426)), closes [CLIProxyAPI#415](https://github.com/CLIProxyAPI/issues/415) * **prompt:** add password input utility with masking ([3bdbff9](3bdbff9)) * **release:** simplify dev versioning with stable base ([942b4b9](942b4b9))
1 parent 71d618a commit 2130855

File tree

5 files changed

+25
-4
lines changed

5 files changed

+25
-4
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# [5.6.0](https://github.com/kaitranntt/ccs/compare/v5.5.0...v5.6.0) (2025-12-04)
2+
3+
4+
### Bug Fixes
5+
6+
* **cliproxy:** clarify paid tier messaging to reference google account tier ([848fbf4](https://github.com/kaitranntt/ccs/commit/848fbf4686b49305c26ef85da339b12dffa51b5b))
7+
* **cliproxy:** correct model selection default and update fallback version ([fdb8761](https://github.com/kaitranntt/ccs/commit/fdb8761cfac416831a8c3ae64f5718179517e3d0))
8+
* **dev-release:** find next available dev version from npm ([482f3a7](https://github.com/kaitranntt/ccs/commit/482f3a7fc66f1b93a1b7e24e00a87c9858574ebd))
9+
* **doctor:** use actual installed clipproxy version instead of hardcoded ([e3edcf6](https://github.com/kaitranntt/ccs/commit/e3edcf613e28a48fb7cb5c2c90ffed3c80cb0c62))
10+
* **prompt:** strip bracketed paste escape sequences from password input ([df31ffc](https://github.com/kaitranntt/ccs/commit/df31ffcee7872b8d263451807818b368a9ba1eb4))
11+
* **update:** add --help support and --dev alias for update command ([b18163c](https://github.com/kaitranntt/ccs/commit/b18163c57b59cabbd7d18165b28933155d94d74a))
12+
13+
14+
### Features
15+
16+
* **cliproxy:** add model catalog with configuration management ([4654c15](https://github.com/kaitranntt/ccs/commit/4654c15577307457f8eb86ca9718b527460c7c40))
17+
* **cliproxy:** add version management command ([7e07615](https://github.com/kaitranntt/ccs/commit/7e07615eedb7263aa359651abef8660ff0dcd95a))
18+
* **cliproxy:** add warning for broken claude proxy models on agy ([0e11426](https://github.com/kaitranntt/ccs/commit/0e11426daa8896ba58aa9d53889818ab3577e250)), closes [CLIProxyAPI#415](https://github.com/CLIProxyAPI/issues/415)
19+
* **prompt:** add password input utility with masking ([3bdbff9](https://github.com/kaitranntt/ccs/commit/3bdbff9345c2eb21d861621e56430de5bac61fc4))
20+
* **release:** simplify dev versioning with stable base ([942b4b9](https://github.com/kaitranntt/ccs/commit/942b4b92cfce054c0886d8508f1c15ad18fd4400))
21+
122
# [5.5.0](https://github.com/kaitranntt/ccs/compare/v5.4.3...v5.5.0) (2025-12-04)
223

324

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.5.0-dev.11
1+
5.6.0

installers/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ $InstallMethod = if ($ScriptDir -and ((Test-Path "$ScriptDir\lib\ccs.ps1") -or (
8383
# IMPORTANT: Update this version when releasing new versions!
8484
# This hardcoded version is used for standalone installations (irm | iex)
8585
# For git installations, VERSION file is read if available
86-
$CcsVersion = "5.5.0"
86+
$CcsVersion = "5.6.0"
8787

8888
# Try to read VERSION file for git installations
8989
if ($ScriptDir) {

installers/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ fi
8484
# IMPORTANT: Update this version when releasing new versions!
8585
# This hardcoded version is used for standalone installations (curl | bash)
8686
# For git installations, VERSION file is read if available
87-
CCS_VERSION="5.5.0"
87+
CCS_VERSION="5.6.0"
8888

8989
# Try to read VERSION file for git installations
9090
if [[ -f "$SCRIPT_DIR/VERSION" ]]; then

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kaitranntt/ccs",
3-
"version": "5.5.0-dev.11",
3+
"version": "5.6.0",
44
"description": "Claude Code Switch - Instant profile switching between Claude Sonnet 4.5 and GLM 4.6",
55
"keywords": [
66
"cli",

0 commit comments

Comments
 (0)