Skip to content

Commit 9f51ead

Browse files
committed
docs: Remove specific version references from documentation
- Remove v0.4.0 from README title - Replace specific version numbers with generic placeholders (X.Y.Z) - Use @latest for uvx examples instead of specific versions - Keep version management dynamic through version.py
1 parent df83e48 commit 9f51ead

3 files changed

Lines changed: 9 additions & 10 deletions

File tree

.github/workflows/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This repository uses GitHub Actions for CI/CD with PyPI Trusted Publisher (OIDC)
1313
- Build and check distribution
1414

1515
### 2. Deploy to PyPI (`deploy.yml`)
16-
- **Trigger**: Git tags matching `v*` (e.g., v0.4.1)
16+
- **Trigger**: Git tags matching `v*` (e.g., vX.Y.Z)
1717
- **Purpose**: Deploy releases to PyPI
1818
- **Uses**: OIDC Trusted Publisher (no API token needed!)
1919
- **Environment**: `pypi` (configured in PyPI settings)
@@ -61,14 +61,14 @@ Already configured on PyPI.org:
6161
```bash
6262
# Update version in src/youtrack_rocket_mcp/version.py
6363
git add .
64-
git commit -m "Release v0.4.1"
65-
git tag v0.4.1
64+
git commit -m "Release vX.Y.Z"
65+
git tag vX.Y.Z
6666
git push origin main --tags
6767
```
6868

6969
### Option 2: Using GitHub Release UI
7070
1. Go to Releases → Create new release
71-
2. Choose a tag (e.g., v0.4.1)
71+
2. Choose a tag (e.g., vX.Y.Z)
7272
3. Fill in release notes
7373
4. Click "Publish release"
7474

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# YouTrack Rocket MCP 🚀 v0.4.0
1+
# YouTrack Rocket MCP 🚀
22

33
A lightning-fast Model Context Protocol (MCP) server implementation for JetBrains YouTrack, built with FastMCP for optimal performance and proper parameter schema generation. Enables AI assistants to interact with YouTrack issue tracking system with full type safety.
44

@@ -93,7 +93,7 @@ export YOUTRACK_API_TOKEN="perm:your-api-token"
9393
uvx youtrack-rocket-mcp
9494

9595
# Or with specific version
96-
uvx youtrack-rocket-mcp@0.4.1
96+
uvx youtrack-rocket-mcp@latest
9797

9898
# Install persistently with uv tool
9999
uv tool install youtrack-rocket-mcp
@@ -187,7 +187,6 @@ To build and push multi-architecture images (for both ARM64 and AMD64 platforms)
187187
2. Build and push for multiple platforms:
188188
```bash
189189
docker buildx build --platform linux/amd64,linux/arm64 \
190-
-t youtrack-rocket-mcp:0.3.8 \
191190
-t youtrack-rocket-mcp:latest \
192191
--push .
193192
```

docs/DEVELOPMENT.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,9 @@ uv build
167167

168168
# This creates wheel and source distributions in dist/
169169
ls dist/
170-
# youtrack_rocket_mcp-0.4.1.tar.gz
171-
# youtrack_rocket_mcp-0.4.1-py3-none-any.whl
170+
# youtrack_rocket_mcp-X.Y.Z.tar.gz
171+
# youtrack_rocket_mcp-X.Y.Z-py3-none-any.whl
172172

173173
# The package is published automatically via GitHub Actions
174-
# when a version tag is pushed (e.g., v0.4.1)
174+
# when a version tag is pushed (e.g., vX.Y.Z)
175175
```

0 commit comments

Comments
 (0)