Skip to content

Commit 0e3f386

Browse files
committed
chore: prepare release for vpatch
1 parent c2b7426 commit 0e3f386

File tree

3 files changed

+25
-8
lines changed

3 files changed

+25
-8
lines changed

NPM_README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,21 @@ ccr-setup
2323

2424
## Installation
2525

26+
> [!IMPORTANT]
27+
> Choose only ONE installation method (Homebrew OR NPM) to avoid conflicts.
28+
29+
### Option 1: Homebrew (Recommended for macOS)
30+
2631
```bash
27-
npm install -g @halilertekin/claude-code-router-config
28-
ccr-setup
32+
brew install halilertekin/tap/claude-code-router-config
2933
```
3034

31-
### Option 2: Homebrew
35+
### Option 2: NPM / PNPM
3236

3337
```bash
34-
brew install claude-code-router-config
38+
npm install -g @halilertekin/claude-code-router-config
39+
# or
40+
pnpm add -g @halilertekin/claude-code-router-config
3541
```
3642

3743
### Option 3: Manual

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,15 @@ ccr config template balanced # Best of all worlds
6666

6767
## Installation
6868

69-
### Option 1: Homebrew (Recommended)
69+
### Option 1: Homebrew (Recommended for macOS)
70+
71+
> [!CAUTION]
72+
> **Conflict Warning**: Do NOT install using both Homebrew and PNPM/NPM simultaneously. Choose only ONE method to avoid command conflicts.
73+
74+
The easiest way to install and keep updated on macOS.
7075

7176
```bash
77+
brew uninstall ccr # Remove old versions if present
7278
brew install halilertekin/tap/claude-code-router-config
7379
```
7480

@@ -77,11 +83,16 @@ After installation, edit your API keys in `~/.env` and start the router:
7783
ccr code
7884
```
7985

80-
### PNPM
86+
### Option 2: PNPM (Alternative)
87+
88+
Use this if you are on Linux or prefer using a Node package manager.
89+
90+
> [!WARNING]
91+
> If you have previously installed via Homebrew, please uninstall it first: `brew uninstall claude-code-router-config`
8192
8293
```bash
8394
pnpm add -g @halilertekin/claude-code-router-config
84-
ccr-setup
95+
# System is ready! Run: ccr --help
8596
```
8697

8798
### Option 3: Manual Setup

cli/commands.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ async function main() {
341341

342342
default:
343343
// Handles 'help', '--help', '-h' and empty command
344-
console.log(chalk.blue('Claude Code Router - Advanced CLI (v1.3.3)'));
344+
console.log(chalk.blue('Claude Code Router - Advanced CLI (v1.3.4)'));
345345
console.log(chalk.gray('─'.repeat(45)));
346346

347347
console.log(chalk.yellow('🚀 Advanced CLI Tools:'));

0 commit comments

Comments
 (0)