Static public-API diff + heuristics to suggest semantic version bumps.
Project description
bumpwright
Bumpwright is an automated semantic versioning tool. It analyzes code changes instead of relying on commit messages to suggest the right next version.
It compares your latest code against the last release with a single command. The tool tells you whether to bump the version by a patch, minor, or major, making accurate releases effortless for maintainers of libraries and services with stable interfaces.
Docs: https://lewis-morris.github.io/bumpwright/ Guides: https://lewis-morris.github.io/bumpwright/guides/
Overview
What & Why
Traditional release tools rely on commit messages, which can be inconsistent. Bumpwright inspects your project’s public API directly to decide the next version. This catches breaking changes even if commit messages miss them and can update version strings and generate changelog entries automatically, streamlining releases.
How It Works
Bumpwright compares two Git references—usually the last release tag and the current commit—and detects changes in the public interface. Removed functions or changed signatures trigger a major bump; new features result in a minor bump; and bug fixes or small tweaks lead to a patch bump. Static analysis and optional analysers (for CLI commands, web routes, migrations, and more) drive these decisions. You can apply the suggestion, update files, and render changelog notes.
Key Benefits
- Simplicity – run a single command to see how your API changed.
- Accuracy – catches breaking changes that commit messages may miss.
- Flexibility – configurable analysers and settings to fit your workflow.
- Automation – update version files and generate changelog entries.
Trade-offs / Constraints
- Baseline required – needs a baseline reference (e.g., prior release tag); run
bumpwright initto mark it. - Static analysis limits – cannot account for runtime-specific changes or internal logic.
- Python 3.11+ – focuses on Python projects and requires Python 3.11 or newer.
Get started with the Quickstart guide.
Install
pip install bumpwright # Python 3.11+
Bumpwright now uses Python's built-in tomllib, removing the need for the
external tomli dependency.
Full details: Installation
TL;DR (90 seconds)
# 1) Create a baseline release commit once
bumpwright init
# 2) Ask Bumpwright what the next version should be
bumpwright decide
# 3) Apply it, update files, commit and tag
bumpwright bump --commit --tag
What the decision means and examples: Quickstart • Command flags: Usage → bump
| Command | Purpose |
|---|---|
bumpwright init |
Create a baseline release commit. |
bumpwright bump |
Determine and apply the next version. |
bumpwright history |
View past releases in text, Markdown, or JSON and roll back a tag. |
Configuration (minimal)
Bumpwright reads bumpwright.toml (you can change with --config). Defaults are sensible; start small and opt-in extras as needed.
# bumpwright.toml
[project]
public_roots = ["."]
# modifying modules here triggers at least a patch bump
private_prefixes = ["_"] # names starting with "_" are ignored as private
[analysers]
cli = true # set true to enable
grpc = false
web_routes = false
migrations = false
openapi = false
graphql = false
[changelog]
# path = "CHANGELOG.md" # optional default target for --changelog
repo_url = "https://github.com/me/project" # link commits and compares
[version]
scheme = "semver" # "semver" | "calver"
# paths / ignore have robust defaults
All options and defaults: Configuration • Versioning schemes: Versioning
Output & Changelog
- Choose output with
--format text|md|jsonfor human/CI consumption. - Generate release notes with a Jinja2 template via
--changelog(and--repo-urlor[changelog].repo_urlfor compare/commit links).
Template context includes: version, date, release_datetime_iso, commits[sha,subject,link], previous_tag, compare_url, contributors[name,link], breaking_changes, repo_url.
Learn more & ready-to-copy templates:
Analysers (opt-in)
Enable what you need in [analysers] or per-run with --enable-analyser/--disable-analyser.
- Python API (default) – respects
__all__; otherwise public = names not starting with_. - CLI – detects changes to argparse/Click commands.
- gRPC – service and method diffs.
- Web routes – Flask/FastAPI route changes.
- Migrations – Alembic schema impacts.
- OpenAPI – spec diffs.
- GraphQL – schema diffs.
Overview & per-analyser docs: Analysers
GitHub Actions (CI)
Common workflows are prebuilt:
- Auto-bump on push (commit + tag + append changelog)
- PR check (report decision only)
- Manual release (on dispatch)
Copy/paste from: CI/CD (GitHub Actions)
Contributing & Roadmap
Issues and PRs welcome. See Contributing and planned work in the Roadmap.
License: MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bumpwright-0.2.0.tar.gz.
File metadata
- Download URL: bumpwright-0.2.0.tar.gz
- Upload date:
- Size: 87.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff2f83a1ddb086740aa184dbfd81738f24c4ae61ad5b1f845e365a4a1db16593
|
|
| MD5 |
5353cc6ce85dbfd95c3c2e30e93daff0
|
|
| BLAKE2b-256 |
02677e95c229a1bd562b20d84f6bcc488a4fc761491b49273638eab6d3fc1fe9
|
File details
Details for the file bumpwright-0.2.0-py3-none-any.whl.
File metadata
- Download URL: bumpwright-0.2.0-py3-none-any.whl
- Upload date:
- Size: 64.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1fb7d6ddd47ef11079e8953acae841d16429f34f227f373c6d6c3d7c6a17f5d
|
|
| MD5 |
b8ba770ebc0e0063825b9c4faae4ceb1
|
|
| BLAKE2b-256 |
4dc9823afc9c1c2bb96e39468dce608a842fab4461429fd5a3b1318da8b7cb54
|