Skip to main content

molt

Changeset-driven versioning, changelogs, and publishing for Python packages and monorepos. Built on PEP 440 versions and PEP 508 requirements, and on the way pip and uv actually resolve them.

Documentation

Install

The distribution is molt-release. The command it installs is molt.

uv tool install molt-release
molt --help

pipx install molt-release and pip install molt-release work too, and uvx molt-release --help runs it without installing anything. Requires Python 3.11 or newer, on Windows, macOS, or Linux.

The release loop

You record the intent of a change while you write it. A separate step turns accumulated intent into releases.

molt init                 # one time: create .changeset/ and a [tool.molt] block
# ... make a change ...
molt add                  # record which packages changed, and how much
molt version              # bump versions, write changelogs, update the lockfile
git commit -am "Release"
molt publish              # build, upload to PyPI, tag

molt add writes a small Markdown file you commit alongside your code:

---
"acme-core": minor
---

Add a --stream flag to the export API for large datasets.

molt version consumes every pending changeset in one pass, takes the highest bump per package, folds the summaries into each CHANGELOG.md, and deletes the files it consumed. All mutations are buffered and flushed together, so a mid-run failure never leaves a repository half-versioned.

Monorepo propagation

In a workspace, a changeset for one package cascades to the packages that depend on it. Given acme-cli requiring acme-core>=1.2.0,<2.0.0, a major bump to acme-core plans this:

$ molt status
Packages to be bumped:
- major
  - acme-core   1.2.0 -> 2.0.0
- patch
  - acme-cli    0.5.0 -> 0.5.1   (dependency bump)

acme-cli has no changeset of its own. Version 2.0.0 falls outside its constraint, so it needs a release. Molt gives it the smallest bump that does the job and rewrites the constraint to >=2.0.0,<3.0.0. A minor bump to 1.3.0 would have released nothing extra, because 1.3.0 still satisfies the range.

See Dependency propagation.

Commands

Command What it does
molt init Scaffold config and .changeset/; detect the ecosystem backend and workspace layout.
molt add Record a changeset. Bare molt runs this.
molt version Consume changesets: bump versions, propagate to dependents, rewrite pins, write changelogs, update the lockfile.
molt status Report pending changesets and the projected release, as text or JSON. Doubles as a CI gate.
molt publish Build and upload changed packages to PyPI over OIDC Trusted Publishing, in dependency order.
molt build Build sdists and wheels for the packages a plan will publish.
molt yank Check a released version and print the steps to yank it on PyPI (PEP 592).
molt git-tag Create annotated git tags for released packages.

--dry-run prints the plan for any mutating command and writes nothing. --non-interactive resolves every prompt to its documented default, which is what Dependabot, Renovate, and codegen need. Human-facing output goes to stderr and stdout carries machine-readable payloads only, so molt status --output json | jq '.releases[].name' needs no filtering.

Full reference: CLI.

Python specifics

Python's packaging rules shape several of molt's behaviors.

  • PEP 440 version math, through packaging. Prereleases are 1.0.0rc1, 1.0.0a2, or 1.0.0.dev3 from a fixed set of spellings, and package names compare under PEP 503 normalization.
  • Prerelease is a flag, not a persistent mode: molt version --pre rc. There is no state file to enter, commit, or exit.
  • uv.lock is refreshed when molt version bumps a package, so a --frozen or --locked install in CI still resolves against the release commit. uv workspaces are first-class; other backends sit behind an ecosystem seam.
  • Snapshots target a separate index. PyPI versions are permanent, so a snapshot on the public index would burn a version number for good.
  • A bad release is yanked, not unpublished. molt yank verifies the version, reports whether it is already yanked, and prints the exact steps. PyPI publishes no yank API, so the final click is yours.

Continuous integration

The repository root carries a composite GitHub Action that runs the whole loop. It keeps a "Version Packages" pull request in sync with your pending changesets, then builds, publishes, tags, and creates a GitHub Release per package once that pull request merges.

- uses: giancarlosisasi/molt@<sha>
  with:
    molt-version: "0.1.0"
    publish: molt publish
  env:
    GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

See CI: GitHub Action for the full workflow, its inputs, and its outputs. Nothing in the loop is GitHub-specific: the same molt commands drive it anywhere.

Documentation

Acknowledgements

Molt's workflow comes from changesets, the release tool for JavaScript monorepos. Its version math comes from packaging, the PyPA reference implementation of PEP 440 and PEP 508. Full credits, including the prior work in Python and the related tools worth comparing molt against, are on the Acknowledgements page.

License

MIT.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

molt_release-0.1.2.tar.gz (910.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

molt_release-0.1.2-py3-none-any.whl (402.0 kB view details)

Uploaded Python 3

File details

Details for the file molt_release-0.1.2.tar.gz.

File metadata

  • Download URL: molt_release-0.1.2.tar.gz
  • Upload date:
  • Size: 910.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for molt_release-0.1.2.tar.gz
Algorithm Hash digest
SHA256 2bf86d252dd9266bdf5e339c31141e93352621b36dcbe122801596c217b7a7d0
MD5 6365fd67315a4b2762005686ff347671
BLAKE2b-256 ba8cbc532180c739dcc21f56dbe5da2622bde9b8f7fd97af302af73d79929c58

See more details on using hashes here.

File details

Details for the file molt_release-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: molt_release-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 402.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for molt_release-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 5e87fe96157a1b6894ccf14d992856593181a2eb878f7f16d29e9f7eef346c53
MD5 9589326b17283d476be9cbd8330a1cc3
BLAKE2b-256 ead8dcaea58f91e61d83d64a0f6ec042f1975403406aa756edf3c4fab803da5b

See more details on using hashes here.

Release history Release notifications | RSS feed

0.2.0

2 files

0.1.4

2 files

0.1.3

2 files

This release

0.1.2 This release

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page