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:
Sam Valladares 2026-01-26 01:37:55 -06:00
parent 36244f3c95
commit 3ac85eeff4

View file

@ -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