- PHASE 1: Architecture consolidation
- PHASE 2: GitHub Action (standalone + cloud modes)
- PHASE 3: CLI hardening (--ci flag, --offline demo, improved diagnose)
- PHASE 4: Langfuse + LangSmith connectors
- PHASE 5: Weight learner with progressive blending
- PHASE 6: Package verification (demo, MCP, verify_install.sh)
- PHASE 7: Documentation (README, CHANGELOG, Action README)
- PHASE 8: Telemetry (DEFERRED with TODO)
- PHASE 9: Data contribution (DEFERRED with TODO)
- PHASE 10: Release hygiene (pyproject.toml, classifiers, keywords)
pytest tests/ -v
# Expected: 279+ tests passingcd github-action/src && python test_run.py
# Expected: All 11 tests passedpip install -e .
driftbase --version
driftbase demo --offline
# Expected: Demo generates 20 runs successfullypython -m build
# Expected: Successfully built .tar.gz and .whl- README.md updated with GitHub Action, demo, LangSmith support
- CHANGELOG.md created with full release notes
- github-action/README.md comprehensive (282 lines)
- pyproject.toml has keywords, classifiers, updated URLs
git status
# Should be clean or only include intended changesgit add .
git commit -m "Release v0.9.3: GitHub Action, LangSmith connector, progressive weight learning"git tag -a v0.9.3 -m "Release v0.9.3
- GitHub Action for automated drift checks in CI/CD
- LangSmith connector with full Cloud parity
- Progressive weight learning (30% → 70% blending)
- CLI enhancements (--ci, --offline, improved diagnose)
- Comprehensive documentation and tests
See CHANGELOG.md for full details."python -m build
# Should now build as driftbase-0.9.3.tar.gz (no .dev suffix)git push origin main
git push origin v0.9.3# Build clean distributions
rm -rf dist/ build/
python -m build
# Upload to PyPI (requires PyPI credentials)
python -m twine upload dist/*# Wait 2-3 minutes for PyPI to process
pip install --upgrade driftbase
driftbase --version
# Should show: driftbase, version 0.9.3Create a test repository with .github/workflows/drift-check.yml:
- uses: driftbase-labs/driftbase-python/github-action@v0.9.3Verify it installs driftbase 0.9.3 from PyPI.
- Update https://driftbase.io with new features
- Update docs.driftbase.io/github-action
- GitHub release notes (auto-generated from tag)
- Discord announcement
- Twitter/X post
If critical issues are found:
-
Yank the PyPI release:
pip install twine twine upload --repository pypi --skip-existing dist/* # Then use PyPI web interface to yank version
-
Create hotfix tag:
git tag -d v0.9.3 git push origin :refs/tags/v0.9.3 # Fix issues git tag v0.9.3.1 git push origin v0.9.3.1
- Current: 0.9.3 (pre-1.0 release)
- Next planned: 0.9.4 (after Cloud API is deployed with Phases 8+9)
- Stable 1.0: After production validation and Cloud integration
Document in release notes:
- Telemetry disabled - Deferred until Cloud API is live (Phase 8)
- Data contribution disabled - Deferred until Cloud API is live (Phase 9)
- Cloud mode in GitHub Action - Requires DRIFTBASE_API_KEY (not yet available publicly)
- Minimum data requirement - Need 50+ runs per version for TIER3 confidence
- Issues: https://github.com/driftbase-labs/driftbase-python/issues
- Discord: https://discord.gg/driftbase
- Email: info@driftbase.io