Skip to content

Commit 79dd57a

Browse files
committed
chore(release): v4.4.0
1 parent b77581f commit 79dd57a

File tree

5 files changed

+35
-18
lines changed

5 files changed

+35
-18
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ All notable changes to CC Switch CLI will be documented in this file.
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## [4.4.0] - 2026-01-31
11+
12+
### Added
13+
14+
- **Interactive (TUI)**: New ratatui-based TUI (recommended).
15+
- **Interactive (MCP)**: Multi-app selector (`m`) to enable/disable MCP servers per app.
16+
- **Sync**: Safe auto live-sync policy (skip live writes/deletes when the target app is uninitialized).
17+
- **Skills**: Align SSOT skills system with upstream; auto-migrate SSOT on list.
18+
19+
### Changed
20+
21+
- **Alignment**: Upstream backend parity Phase 1/2 (Provider + MCP behavior and data model alignment).
22+
23+
### Fixed
24+
25+
- **Deeplink**: Validate endpoints and homepage during provider import.
26+
1027
## [4.3.1] - 2026-01-29
1128

1229
### Fixed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# CC-Switch CLI
44

5-
[![Version](https://img.shields.io/badge/version-4.3.1-blue.svg)](https://github.com/saladday/cc-switch-cli/releases)
5+
[![Version](https://img.shields.io/badge/version-4.4.0-blue.svg)](https://github.com/saladday/cc-switch-cli/releases)
66
[![Platform](https://img.shields.io/badge/platform-Windows%20%7C%20macOS%20%7C%20Linux-lightgrey.svg)](https://github.com/saladday/cc-switch-cli/releases)
77
[![Built with Rust](https://img.shields.io/badge/built%20with-Rust-orange.svg)](https://www.rust-lang.org/)
88
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
@@ -234,10 +234,10 @@ Download the latest release from [GitHub Releases](https://github.com/saladday/c
234234

235235
```bash
236236
# Download Universal Binary (recommended, supports Apple Silicon + Intel)
237-
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-darwin-universal.tar.gz
237+
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.4.0-darwin-universal.tar.gz
238238

239239
# Extract
240-
tar -xzf cc-switch-cli-darwin-universal.tar.gz
240+
tar -xzf cc-switch-cli-v4.4.0-darwin-universal.tar.gz
241241

242242
# Add execute permission
243243
chmod +x cc-switch
@@ -253,10 +253,10 @@ xattr -cr /usr/local/bin/cc-switch
253253

254254
```bash
255255
# Download
256-
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-linux-x64-musl.tar.gz
256+
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.4.0-linux-x64-musl.tar.gz
257257

258258
# Extract
259-
tar -xzf cc-switch-cli-linux-x64-musl.tar.gz
259+
tar -xzf cc-switch-cli-v4.4.0-linux-x64-musl.tar.gz
260260

261261
# Add execute permission
262262
chmod +x cc-switch
@@ -269,8 +269,8 @@ sudo mv cc-switch /usr/local/bin/
269269

270270
```bash
271271
# For Raspberry Pi or ARM servers
272-
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-linux-arm64-musl.tar.gz
273-
tar -xzf cc-switch-cli-linux-arm64-musl.tar.gz
272+
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.4.0-linux-arm64-musl.tar.gz
273+
tar -xzf cc-switch-cli-v4.4.0-linux-arm64-musl.tar.gz
274274
chmod +x cc-switch
275275
sudo mv cc-switch /usr/local/bin/
276276
```
@@ -279,7 +279,7 @@ sudo mv cc-switch /usr/local/bin/
279279

280280
```powershell
281281
# Download the zip file
282-
# https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-windows-x64.zip
282+
# https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.4.0-windows-x64.zip
283283
284284
# After extracting, move cc-switch.exe to a PATH directory, e.g.:
285285
move cc-switch.exe C:\Windows\System32\

README_ZH.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# CC-Switch CLI
44

5-
[![Version](https://img.shields.io/badge/version-4.3.1-blue.svg)](https://github.com/saladday/cc-switch-cli/releases)
5+
[![Version](https://img.shields.io/badge/version-4.4.0-blue.svg)](https://github.com/saladday/cc-switch-cli/releases)
66
[![Platform](https://img.shields.io/badge/platform-Windows%20%7C%20macOS%20%7C%20Linux-lightgrey.svg)](https://github.com/saladday/cc-switch-cli/releases)
77
[![Built with Rust](https://img.shields.io/badge/built%20with-Rust-orange.svg)](https://www.rust-lang.org/)
88
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
@@ -234,10 +234,10 @@ cc-switch env list # 列出环境变量
234234

235235
```bash
236236
# 下载 Universal Binary(推荐,支持 Apple Silicon + Intel)
237-
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-darwin-universal.tar.gz
237+
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.4.0-darwin-universal.tar.gz
238238

239239
# 解压
240-
tar -xzf cc-switch-cli-darwin-universal.tar.gz
240+
tar -xzf cc-switch-cli-v4.4.0-darwin-universal.tar.gz
241241

242242
# 添加执行权限
243243
chmod +x cc-switch
@@ -253,10 +253,10 @@ xattr -cr /usr/local/bin/cc-switch
253253

254254
```bash
255255
# 下载
256-
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-linux-x64-musl.tar.gz
256+
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.4.0-linux-x64-musl.tar.gz
257257

258258
# 解压
259-
tar -xzf cc-switch-cli-linux-x64-musl.tar.gz
259+
tar -xzf cc-switch-cli-v4.4.0-linux-x64-musl.tar.gz
260260

261261
# 添加执行权限
262262
chmod +x cc-switch
@@ -269,8 +269,8 @@ sudo mv cc-switch /usr/local/bin/
269269

270270
```bash
271271
# 适用于树莓派或 ARM 服务器
272-
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-linux-arm64-musl.tar.gz
273-
tar -xzf cc-switch-cli-linux-arm64-musl.tar.gz
272+
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.4.0-linux-arm64-musl.tar.gz
273+
tar -xzf cc-switch-cli-v4.4.0-linux-arm64-musl.tar.gz
274274
chmod +x cc-switch
275275
sudo mv cc-switch /usr/local/bin/
276276
```
@@ -279,7 +279,7 @@ sudo mv cc-switch /usr/local/bin/
279279

280280
```powershell
281281
# 下载 zip 文件
282-
# https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-windows-x64.zip
282+
# https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.4.0-windows-x64.zip
283283
284284
# 解压后将 cc-switch.exe 移动到 PATH 目录,例如:
285285
move cc-switch.exe C:\Windows\System32\

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cc-switch"
3-
version = "4.3.1"
3+
version = "4.4.0"
44
description = "All-in-One Assistant for Claude Code, Codex & Gemini CLI"
55
authors = ["Jason Young", "saladday"]
66
license = "MIT"

0 commit comments

Comments
 (0)