@greynewell/mcpbr 0.3.23 → 0.3.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1089,6 +1089,30 @@ pytest
|
|
|
1089
1089
|
ruff check src/
|
|
1090
1090
|
```
|
|
1091
1091
|
|
|
1092
|
+
### Creating Releases
|
|
1093
|
+
|
|
1094
|
+
We use an automated workflow for releases. See the **[Release Guide](docs/RELEASE.md)** for full details.
|
|
1095
|
+
|
|
1096
|
+
**Quick start for maintainers:**
|
|
1097
|
+
```bash
|
|
1098
|
+
# Patch release (bug fixes) - most common
|
|
1099
|
+
gh workflow run release.yml -f version_bump=patch
|
|
1100
|
+
|
|
1101
|
+
# Minor release (new features)
|
|
1102
|
+
gh workflow run release.yml -f version_bump=minor
|
|
1103
|
+
|
|
1104
|
+
# Major release (breaking changes)
|
|
1105
|
+
gh workflow run release.yml -f version_bump=major
|
|
1106
|
+
```
|
|
1107
|
+
|
|
1108
|
+
**For AI agents:** See the **[AI Agent Guide](docs/AI_AGENT_GUIDE.md)** for a quick reference.
|
|
1109
|
+
|
|
1110
|
+
The workflow automatically:
|
|
1111
|
+
- Bumps version in `pyproject.toml`
|
|
1112
|
+
- Syncs version to all package files
|
|
1113
|
+
- Creates git tag and GitHub release
|
|
1114
|
+
- Triggers PyPI and npm publication
|
|
1115
|
+
|
|
1092
1116
|
## Roadmap
|
|
1093
1117
|
|
|
1094
1118
|
We're building the defacto standard for MCP server benchmarking! Our [v1.0 Roadmap](https://github.com/greynewell/mcpbr/projects/2) includes 200+ features across 11 strategic categories:
|