Skip to content

Commit 6b22e71

Browse files
committed
chore(release): v4.1.4
1 parent 2bd9b70 commit 6b22e71

File tree

5 files changed

+24
-18
lines changed

5 files changed

+24
-18
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
---
1111

12+
## [4.1.4] - 2026-01-06
13+
14+
### Fixed
15+
16+
- **Providers (Interactive)**: When adding the first provider for an app, auto-set it as the current provider (prevents “current provider is empty” and unlocks switching). Fixes #10.
17+
1218
## [4.1.3] - 2026-01-06
1319

1420
### 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.1.3-blue.svg)](https://github.com/saladday/cc-switch-cli/releases)
5+
[![Version](https://img.shields.io/badge/version-4.1.4-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)
@@ -197,10 +197,10 @@ Download the latest release from [GitHub Releases](https://github.com/saladday/c
197197

198198
```bash
199199
# Download Universal Binary (recommended, supports Apple Silicon + Intel)
200-
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.3-darwin-universal.tar.gz
200+
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.4-darwin-universal.tar.gz
201201

202202
# Extract
203-
tar -xzf cc-switch-cli-v4.1.3-darwin-universal.tar.gz
203+
tar -xzf cc-switch-cli-v4.1.4-darwin-universal.tar.gz
204204

205205
# Add execute permission
206206
chmod +x cc-switch
@@ -216,10 +216,10 @@ xattr -cr /usr/local/bin/cc-switch
216216

217217
```bash
218218
# Download
219-
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.3-linux-x64-musl.tar.gz
219+
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.4-linux-x64-musl.tar.gz
220220

221221
# Extract
222-
tar -xzf cc-switch-cli-v4.1.3-linux-x64-musl.tar.gz
222+
tar -xzf cc-switch-cli-v4.1.4-linux-x64-musl.tar.gz
223223

224224
# Add execute permission
225225
chmod +x cc-switch
@@ -232,8 +232,8 @@ sudo mv cc-switch /usr/local/bin/
232232

233233
```bash
234234
# For Raspberry Pi or ARM servers
235-
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.3-linux-arm64-musl.tar.gz
236-
tar -xzf cc-switch-cli-v4.1.3-linux-arm64-musl.tar.gz
235+
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.4-linux-arm64-musl.tar.gz
236+
tar -xzf cc-switch-cli-v4.1.4-linux-arm64-musl.tar.gz
237237
chmod +x cc-switch
238238
sudo mv cc-switch /usr/local/bin/
239239
```
@@ -242,7 +242,7 @@ sudo mv cc-switch /usr/local/bin/
242242

243243
```powershell
244244
# Download the zip file
245-
# https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.3-windows-x64.zip
245+
# https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.4-windows-x64.zip
246246
247247
# After extracting, move cc-switch.exe to a PATH directory, e.g.:
248248
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.1.3-blue.svg)](https://github.com/saladday/cc-switch-cli/releases)
5+
[![Version](https://img.shields.io/badge/version-4.1.4-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)
@@ -197,10 +197,10 @@ cc-switch env list # 列出环境变量
197197

198198
```bash
199199
# 下载 Universal Binary(推荐,支持 Apple Silicon + Intel)
200-
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.3-darwin-universal.tar.gz
200+
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.4-darwin-universal.tar.gz
201201

202202
# 解压
203-
tar -xzf cc-switch-cli-v4.1.3-darwin-universal.tar.gz
203+
tar -xzf cc-switch-cli-v4.1.4-darwin-universal.tar.gz
204204

205205
# 添加执行权限
206206
chmod +x cc-switch
@@ -216,10 +216,10 @@ xattr -cr /usr/local/bin/cc-switch
216216

217217
```bash
218218
# 下载
219-
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.3-linux-x64-musl.tar.gz
219+
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.4-linux-x64-musl.tar.gz
220220

221221
# 解压
222-
tar -xzf cc-switch-cli-v4.1.3-linux-x64-musl.tar.gz
222+
tar -xzf cc-switch-cli-v4.1.4-linux-x64-musl.tar.gz
223223

224224
# 添加执行权限
225225
chmod +x cc-switch
@@ -232,8 +232,8 @@ sudo mv cc-switch /usr/local/bin/
232232

233233
```bash
234234
# 适用于树莓派或 ARM 服务器
235-
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.3-linux-arm64-musl.tar.gz
236-
tar -xzf cc-switch-cli-v4.1.3-linux-arm64-musl.tar.gz
235+
curl -LO https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.4-linux-arm64-musl.tar.gz
236+
tar -xzf cc-switch-cli-v4.1.4-linux-arm64-musl.tar.gz
237237
chmod +x cc-switch
238238
sudo mv cc-switch /usr/local/bin/
239239
```
@@ -242,7 +242,7 @@ sudo mv cc-switch /usr/local/bin/
242242

243243
```powershell
244244
# 下载 zip 文件
245-
# https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.3-windows-x64.zip
245+
# https://github.com/saladday/cc-switch-cli/releases/latest/download/cc-switch-cli-v4.1.4-windows-x64.zip
246246
247247
# 解压后将 cc-switch.exe 移动到 PATH 目录,例如:
248248
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.1.3"
3+
version = "4.1.4"
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)