phase4-D: bump to v0.1.0 + add make build#4
Merged
Merged
Conversation
Phase 4 Track D §5 D1. Prepares the release tag (D2 follows on ``main`` once this PR lands). * pyproject.toml version 0.0.1 → 0.1.0 * src/m_dev_tools_mcp/__init__.py __version__ → "0.1.0" * New ``build>=1.2`` dev-extra so contributors can ``make build`` without a separate uv install * New ``make build`` target — PEP-517 ``python -m build --wheel`` → ``dist/m_dev_tools_mcp-0.1.0-py3-none-any.whl``. Pure-Python; no compiled extensions, no platform pin * ``make clean`` extended to also drop ``dist/*.whl`` / ``dist/*.tar.gz`` (the manifest + repo.meta.json under ``dist/`` stay tracked; only the build outputs are blown away) * dist/mcp-tools.json regenerated — the ``version`` field embeds the package version so the manifest drift gate catches stale bumps Verified locally: * ``make check`` green (41/41 pytest, ruff + mypy clean, manifest + agents drift gates clean) * ``make build`` produces ``dist/m_dev_tools_mcp-0.1.0-py3-none-any.whl`` * ``pip install`` of the wheel into a fresh ``mktemp -d`` venv exposes ``m-dev-tools-mcp --version`` printing ``0.1.0`` D2 (tag + ``gh release create v0.1.0`` with the wheel attached) lands on ``main`` after this merges.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Phase 4 Track D §5 D1 — release-prep PR. The v0.1.0 tag +
gh release createhappen onmainonce this lands.What changed
pyproject.tomlversion0.0.1 → 0.1.0__version__insrc/m_dev_tools_mcp/__init__.py→0.1.0build>=1.2dev-extra so contributors canmake buildwithout a separateuvinstallmake buildtarget — PEP-517python -m build --wheel→dist/m_dev_tools_mcp-0.1.0-py3-none-any.whl. Pure-Python; no compiled extensions, no platform pinmake cleanextended to dropdist/*.whl/dist/*.tar.gz(the manifest +repo.meta.jsonunderdist/stay tracked; only the build outputs are blown away)dist/mcp-tools.jsonregenerated — theversionfield embeds the package version so the drift gate catches stale bumpsVerified locally
make checkgreen (41/41 pytest, ruff + mypy clean, manifest + agents drift gates clean)make buildproducesdist/m_dev_tools_mcp-0.1.0-py3-none-any.whlpip install dist/m_dev_tools_mcp-0.1.0-py3-none-any.whlin amktemp -dvenv exposesm-dev-tools-mcp --versionprinting0.1.0What's NOT in this PR
v0.1.0git tag and the GitHub Release with the wheel attached — those land onmainafter this merges (Track D §5 D2).tool:m-dev-tools-mcpentry in.github/profile/tools.jsonwithrelease_wheel_url) — that's a follow-up PR on the.githubrepo (Track D §5 D3–D5).Test plan
make checkgreenmake buildproduces the wheel--versionprints0.1.0