vership
A release orchestrator that handles version bumping, changelog generation, and publishing — with zero configuration.
$ vership bump patch
✓ Working tree is clean
✓ On branch main
✓ Tag v0.4.1 does not exist
✓ Lock file in sync
✓ Lint passes
✓ Tests pass
→ Bumping 0.4.0 → 0.4.1
→ Updated rust
→ Updating version files
→ Generated changelog (3 entries)
→ Running artifact: cargo run --release -- schema generate
→ Committed: chore: bump version to v0.4.1
→ Tagged: v0.4.1
→ Pushed to origin
Why vership?
Most release tools require config files, plugins, or CI integration before they do anything. vership works out of the box: it detects your project type, runs pre-flight checks, generates a changelog from conventional commits, bumps the version, and pushes — in one command.
| vership | cargo-release | semantic-release | git-cliff | |
|---|---|---|---|---|
| Zero config | Yes | No | No | No |
| Multi-ecosystem | Rust, Node, Python, Go, Gradle, Ansible | Rust only | Node only | Any (changelog only) |
| Changelog generation | Built-in | External tool | Plugin | Yes |
| Multi-file version sync | Built-in | No | Plugin | No |
| Artifact regeneration | Built-in | No | Plugin | No |
| Pre-flight checks | Built-in | Partial | No | No |
| Single binary | Yes | Yes | No (Node runtime) | Yes |
Agent-friendly (--json, schema) |
Yes | No | No | No |
Install
# Homebrew
brew install rvben/tap/vership
# From crates.io
cargo install vership
# From PyPI
pip install vership
# From source
git clone https://github.com/rvben/vership && cd vership && cargo install --path .
Quick Start
No setup required. Just use conventional commits and run:
vership bump patch # 0.1.0 → 0.1.1
vership bump minor # 0.1.1 → 0.2.0
vership bump major # 0.2.0 → 1.0.0
Initial release? Tag the version already in your manifest:
vership release # tag the current Cargo.toml/package.json version as-is
Interrupted run? Continue where it stopped:
vership resume # finishes commit/tag/push using the on-disk version
Preview before releasing:
vership bump patch --dry-run
Commands
vership bump <patch|minor|major> Bump version, generate changelog, tag, push
--dry-run Preview without making changes
--skip-checks Skip lint and test checks
--no-push Stop after tagging, do not push
--prepare Commit changes, but do not tag or push
vership release Tag the on-disk version as-is (no bump)
--dry-run / --skip-checks / --no-push / --prepare same as bump
vership resume Finish an interrupted bump (trusts on-disk version)
--dry-run / --skip-checks / --no-push / --prepare same as bump
vership changelog [patch|minor|major] Preview the exact release section
vership preflight [patch|minor|major] Check the intended release target
vership status Show version, project type, unreleased commits
vership verify [<version>] Verify a release is live on all publish targets
--targets <list> / --skip <list> Filter targets
vership update-local [<version>] Update this machine's installs to a version
--managers <list> / --skip <list> Filter package managers
--dry-run Print the install commands without running them
vership config init Create vership.toml with defaults
vership schema JSON schema for agent integration
vership completions <shell> Generate shell completions
bump auto-detects an interrupted prior run when the on-disk version already
matches the expected post-bump value AND the working tree is dirty. The
explicit resume subcommand is the escape hatch for cases where auto-detection
doesn't fire.
What It Does
vership bump patch runs this flow:
- Detect project type (Rust, Rust+Maturin, Node, Go, Python, Gradle, Ansible Collection)
- Check clean working tree (including untracked files), correct branch, intended tag doesn't exist locally or on origin, lockfile in sync
- Check lint and tests pass (skippable with
--skip-checks) - Bump version in project files (Cargo.toml, package.json, pyproject.toml, gradle.properties, galaxy.yml) or tag directly (Go)
- Update version references in extra files (
version_files) - Generate changelog from conventional commits since last tag
- Regenerate artifacts from commands (
artifacts) - Commit, tag, and atomically push the branch and tag
A repo carrying several manifests is resolved by precedence: galaxy.yml, Cargo.toml, package.json, go.mod, pyproject.toml, Gradle. A package.json marked "private": true is skipped in that order and considered only once nothing else matches, so a vendored test harness or docs site does not outrank the manifest the repo actually releases. Set [project] type in vership.toml to override detection entirely.
Your existing CI release workflow (GitHub Actions, etc.) triggers on the tag push as usual. vership handles the local side only.
Release commits carry a Vership-Release trailer. If a pre-push hook or the
network fails after the local tag is created but before origin receives it,
rerunning the same command safely removes that unpublished tag and retries the
same version. Vership never rewrites a tag that already exists on origin.
Post-Release Verification
A pushed tag does not mean the release published: a CI job can fail after tagging, skip a registry, or upload an empty release. vership verify checks that a version is actually live everywhere the repo publishes:
$ vership verify
verify 0.5.6
ok tag v0.5.6
ok release 0.5.6
ok crates 0.5.6
FAIL pypi not found
Targets are autodetected: tag and release from the GitHub remote, crates from Cargo.toml (unless publish = false), pypi from pyproject.toml, npm from a non-private package.json, homebrew and ghcr from publish steps in .github/workflows/. The [verify] section in vership.toml can skip targets or set the tap, formula, and image coordinates:
[verify]
skip = ["npm"]
tap = "owner/homebrew-tap" # default: <owner>/homebrew-tap
formula = "name" # default: repo name
image = "owner/name" # default: owner/repo lowercased
Exit codes: 0 when every target passes; 8 (unpublished, retryable) when anything is missing, version-mismatched, or errored. Publishing may still be in flight, so 8 is a state, not a failure. To block until a release is fully live, compose with tarry:
tarry cmd --timeout 20m -- vership verify
Local Install Update
Releasing a tool you use yourself leaves your own machine on the old version, and often on several old versions at once: the same executable can be installed by cargo, uv, npm and Homebrew, and whichever directory comes first on $PATH is the one you actually run. vership update-local closes that gap:
$ vership update-local
update-local 0.5.13
ok cargo 0.5.12 -> 0.5.13
ok uv 0.5.13
ok vership /Users/you/.cargo/bin/vership (cargo 0.5.13)
shadowed /usr/local/bin/vership (unmanaged)
Only managers that already hold the package are touched; nothing is newly installed. The package name each manager is asked about comes from the same detection verify uses: the crate name from Cargo.toml, the project name from pyproject.toml, the package name from package.json, the formula from the detected tap.
Before anything is installed, each manager's registry is checked for the target version. This matters because an unpinned reinstall is a silent downgrade: cargo install <crate> --force fetches whatever the registry currently serves and exits 0, so running it a minute after vership bump would reinstall the version you just replaced. A registry that has not caught up reports unpublished (exit 8, retryable) and runs nothing, for every manager and not only the lagging one: registries publish at different speeds on the same release, and a half-updated machine is not a state "retry and you are done" can describe. Exit 8 therefore means the machine is exactly as it was. --dry-run reports the same wait and the same exit 8, because a preview that claimed the installs would run would be predicting something a real run at that moment would not do; the commands are still printed. It composes with tarry to close a release in one line:
vership bump patch && tarry cmd --timeout 20m -- vership update-local
After the installs, every copy of every executable on $PATH is reported in $PATH order. Ownership is decided by resolved file identity, not by directory, so a hand-copied binary sitting next to a uv shim is reported as unmanaged rather than credited to uv, and its version is left blank rather than guessed. A copy resolving into a Homebrew keg is the one exception, credited to brew at the version the keg path states, since Homebrew owns everything under Cellar/ by construction. That covers the copies no manager was asked about: brew is probed only when the project's tap is detected. Exit 1 when an install fails, or when a stale or unmanaged copy shadows the one that was updated: an update nothing reaches is not an update.
Installs that would not reproduce the release are reported and left alone: a git or alternate-registry install, and a cargo install --path install of a different project. A --path install of the project you are in is rebuilt from it.
Caveat: the uv update is a pinned uv tool install <pkg>==<version> --reinstall --refresh, which is the only deterministic form (uv tool upgrade has no --refresh and reports nothing to do against a cached index). A pinned reinstall drops --with extras the tool was originally installed with; re-add them by hand if you use them.
Changelog Format
Generated from conventional commits in Keep a Changelog format:
## [0.2.1](https://github.com/you/repo/compare/v0.2.0...v0.2.1) - 2026-03-28
### Added
- **api**: add user endpoint ([abc1234](https://github.com/you/repo/commit/abc1234))
### Fixed
- correct null handling in parser ([def5678](https://github.com/you/repo/commit/def5678))
| Commit type | Section |
|---|---|
feat |
Added |
fix |
Fixed |
perf |
Performance |
change |
Changed |
feat! / BREAKING CHANGE |
Breaking Changes |
chore, docs, ci, test, refactor, build, style |
Excluded |
Curated Unreleased notes
Vership promotes hand-written notes under either ## [Unreleased] (the
canonical Keep a Changelog form) or ## Unreleased. A fresh canonical
## [Unreleased] heading is left behind for the next release. Duplicate or
malformed Unreleased headings stop the release rather than risking incomplete
notes.
When the Unreleased section contains curated content, that content is
authoritative and replaces the generated commit entries. Vership reports the
number of replaced entries, and both vership changelog <level> and
vership bump <level> --dry-run show the exact section that would be released.
Version Files
Projects often have version strings scattered across READMEs, docs, and companion packages. vership updates them all during the bump:
# Text mode: search/replace with placeholders
[[version_files]]
glob = "README.md"
search = "rev: v{prev}" # {prev} = old version
replace = "rev: v{version}" # {version} = new version
# Field mode: update JSON fields directly
[[version_files]]
glob = "npm/*/package.json"
field = "version"
# Wildcard: update all values in an object
[[version_files]]
glob = "package.json"
field = "optionalDependencies.*"
All matched files are staged and included in the release commit automatically.
Artifacts
Some projects need to regenerate files from the built binary during release (schemas, rule exports, API docs). vership runs these commands and commits the output:
# Capture stdout to a file
[[artifacts]]
command = "cargo run --release -- schema generate-json"
output = "schema.json"
# Or let the command write its own files
[[artifacts]]
command = "make generate-docs"
files = ["docs/api.json"]
Commands run from the project root via sh -c. Output files are staged automatically. If a declared file doesn't exist after the command runs, the release aborts with a clear error.
Configuration
vership works without any configuration. Only create vership.toml if you need to override defaults:
[project]
branch = "main" # Branch to release from
type = "go" # Skip detection: rust, rust-maturin, node, go,
# python, gradle, ansible-collection
[hooks]
pre-bump = "make verify" # Run before version bump
post-push = "echo done" # Run after push (e.g. trigger Homebrew update)
[checks]
lint = true # Run lint checks (default: true)
tests = true # Run tests (default: true)
allow_untracked = false # Require untracked files to be added or ignored
lint_command = "npm run lint" # Override default lint command
test_command = "npm test" # Override default test command
[changelog]
unconventional = "exclude" # "exclude", "include", or "strict"
Agent Integration
vership is designed to work with AI coding assistants:
# Machine-readable project status
vership status --json
# Full command schema for tool discovery
vership schema
License
MIT
Releasing
Vership owns versioning, changelog generation, release commits, and tags. See the release runbook for the verified workflow and recovery policy.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
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 vership-0.5.21.tar.gz.
File metadata
- Download URL: vership-0.5.21.tar.gz
- Upload date:
- Size: 179.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09f8893a6d27c02254cc078b5d511eee86dd765d8cbe33e2af419a34b64d23d4
|
|
| MD5 |
e5669c7b4d124211a4ef3cb71df32d19
|
|
| BLAKE2b-256 |
6b393949032b29ce8d686801d5f42c04af5ec10b223c20256b1bf8d52c2797f9
|
File details
Details for the file vership-0.5.21-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: vership-0.5.21-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: Python 3, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0455d00785a7a3745f4edbdfbf97b89d731c5dbe1bf00f0251a8b5b339cba3d3
|
|
| MD5 |
3f2e57e9580fb4632f4709f861d82d7c
|
|
| BLAKE2b-256 |
5b759da09e017012125e06b9f363fa99c3a82c6fe506bb4a7d776491dcfaa4da
|
File details
Details for the file vership-0.5.21-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: vership-0.5.21-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.7 MB
- Tags: Python 3, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e0d85e07cdfce8f407d6f0d157a933b618609f3e27221414278980df888a1aa
|
|
| MD5 |
67bc3c4b0f199c2be442c1d243a50461
|
|
| BLAKE2b-256 |
f3f2e0fde9649459a7fbb1f730d46393e153efb63e6913f20c04b8c5ea922b1d
|
File details
Details for the file vership-0.5.21-py3-none-macosx_11_0_arm64.whl.
File metadata
- Download URL: vership-0.5.21-py3-none-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.7 MB
- Tags: Python 3, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e185d6344b06bc8b48e7ff6416359a20730d79ae2287eacb1060fc8043c0782
|
|
| MD5 |
c05cc972cc86ef626507daeb3016056c
|
|
| BLAKE2b-256 |
3492d4ebad7fe7fd62a3de877447ae9b675c5e331dcc1349e602deeb584b803f
|
File details
Details for the file vership-0.5.21-py3-none-macosx_10_12_x86_64.whl.
File metadata
- Download URL: vership-0.5.21-py3-none-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: Python 3, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e921e1caa5d4d3cdf6e61a00b63af552e3a9dc6f5806eea4934c29dc5227493
|
|
| MD5 |
f793d6cbabb8823153252b2bb7920a7d
|
|
| BLAKE2b-256 |
a9febf72543e3c54cc5ca23aad4ca0ef0739b388fe2eb1e0e42bf7add9e16b89
|