mirror of
https://github.com/samvallad33/vestige.git
synced 2026-06-08 20:25:16 +02:00
docs: add version pinning and release tags documentation
- Document how to pin to specific versions - List available versions (v1.0.0, v1.1.0) - Add version check command Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
36244f3c95
commit
3ac85eeff4
1 changed files with 21 additions and 0 deletions
21
README.md
21
README.md
|
|
@ -1400,6 +1400,7 @@ cargo build --release --all-features
|
|||
|
||||
## Updating
|
||||
|
||||
**Latest version (recommended):**
|
||||
```bash
|
||||
cd vestige
|
||||
git pull
|
||||
|
|
@ -1407,8 +1408,28 @@ cargo build --release
|
|||
sudo cp target/release/vestige-mcp /usr/local/bin/
|
||||
```
|
||||
|
||||
**Pin to a specific version:**
|
||||
```bash
|
||||
cd vestige
|
||||
git fetch --tags
|
||||
git checkout v1.1.0 # or any version tag
|
||||
cargo build --release
|
||||
sudo cp target/release/vestige-mcp /usr/local/bin/
|
||||
```
|
||||
|
||||
**Available versions:**
|
||||
| Version | Highlights |
|
||||
|---------|------------|
|
||||
| `v1.1.0` | 8 unified tools, CLI binary, comprehensive FAQ |
|
||||
| `v1.0.0` | Initial release, 29 tools |
|
||||
|
||||
Then restart Claude.
|
||||
|
||||
**Check your version:**
|
||||
```bash
|
||||
vestige-mcp --version
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## License
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue