Skip to content

Commit fce914f

Browse files
divshekharclaude
andcommitted
docs: add v1.4.1 changelog and rename --mcp-url to --url in docs
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 0da9cf9 commit fce914f

File tree

5 files changed

+17
-6
lines changed

5 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
11
# CHANGELOG
22

3+
## v1.4.1
4+
5+
### Breaking Changes
6+
7+
1. **`--mcp-url` renamed to `--url`** - The `--mcp-url` flag in `syrin dev` has been renamed to `--url` for consistency across all commands.
8+
9+
### Improvements
10+
11+
1. **Updated Dependencies** - Upgraded all CLI dependencies to their latest versions.
12+
2. **Updated README** - Restructured quickstart, added demo GIFs, and improved documentation for launch.
13+
314
## v1.4.0
415

516
### Features
617

718
1. **Global Configuration Support** - Syrin can now be used from anywhere without project-specific configuration.
819
- `syrin init --global` creates user-wide LLM configuration at `~/.syrin/syrin.yaml`
9-
- `syrin dev` works with global config using `--transport` and `--mcp-url`/`--script` flags
20+
- `syrin dev` works with global config using `--transport` and `--url`/`--script` flags
1021
- Global `.env` support at `~/.syrin/.env` for shared API keys
1122
- Configuration precedence: CLI flags > Local config > Global config > Defaults
1223

docs/Commands/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ syrin init --global
185185
syrin config edit-env --global
186186

187187
# 2. Test from any directory
188-
syrin dev --transport http --mcp-url http://localhost:8000/mcp
188+
syrin dev --transport http --url http://localhost:8000/mcp
189189
```
190190

191191
### CI/CD Pipeline

docs/Commands/syrin-config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ When using global config, you must provide transport details via CLI flags:
397397

398398
```bash
399399
# HTTP transport
400-
syrin dev --exec --transport http --mcp-url http://localhost:8000/mcp
400+
syrin dev --exec --transport http --url http://localhost:8000/mcp
401401
402402
# stdio transport
403403
syrin dev --exec --transport stdio --script "python server.py"
@@ -514,7 +514,7 @@ syrin doctor
514514
syrin config list --global
515515
516516
# 2. Run with transport flags
517-
syrin dev --transport http --mcp-url http://localhost:8000/mcp
517+
syrin dev --transport http --url http://localhost:8000/mcp
518518
```
519519

520520
### Managing Multiple Projects

docs/Commands/syrin-dev.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ syrin dev [options]
4747
| `--event-file <path>` | Directory for event files | `.syrin/events` |
4848
| `--run-script` | Spawn MCP server internally for HTTP transport | `false` |
4949
| `--transport <type>` | Transport type (stdio or http) | From configuration |
50-
| `--mcp-url <url>` | MCP server URL (required for http with global config) | From configuration |
50+
| `--url <url>` | MCP server URL (required for http with global config) | From configuration |
5151
| `--script <command>` | Script command (required for stdio with global config) | From configuration |
5252

5353
**Global Options:**

docs/Commands/syrin-init.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ When using global config, provide transport details via CLI flags:
144144

145145
```bash
146146
# HTTP transport
147-
syrin dev --transport http --mcp-url http://localhost:8000/mcp
147+
syrin dev --transport http --url http://localhost:8000/mcp
148148
149149
# stdio transport
150150
syrin dev --transport stdio --script "python server.py"

0 commit comments

Comments
 (0)