Skip to content

Release Process

This page is the practical checklist for cutting a MolPy release.

Version source of truth

Version metadata lives in src/molpy/version.py. Update both fields before release:

version = "X.Y.Z"
release_date = "YYYY-MM-DD"

Pre-release checks

Run all three validation steps locally before creating the release branch.

pytest tests/ -v -m "not external"    # tests pass
mkdocs build                           # docs build
python -m build && twine check dist/*  # package is valid

Release workflow

Create a release branch, update the version, and merge back to master with a tag.

git checkout master && git pull origin master
git checkout -b release/vX.Y.Z

# update version.py, commit
git add src/molpy/version.py
git commit -m "chore(release): vX.Y.Z"

git checkout master
git merge release/vX.Y.Z
git tag -a vX.Y.Z -m "Release vX.Y.Z"
git push origin master --tags

On tag push (v*), GitHub Actions runs .github/workflows/release.yml. It validates the tag against molpy.version.version, runs the test suite, builds artifacts, and publishes to PyPI.

Release notes

Use this structure on the GitHub Releases page:

## MolPy vX.Y.Z

### Added
- ...

### Changed
- ...

### Fixed
- ...

### Breaking Changes
- ... (or "None")

Hotfix

For critical fixes on a released version:

git checkout -b hotfix/vX.Y.Z vA.B.C
# fix, test, update version.py
git commit -am "fix: ..."
git tag -a vX.Y.Z -m "Hotfix vX.Y.Z"
git push origin --tags