1 unstable release

Uses new Rust 2024

0.1.0 Jul 16, 2025

#597 in Cargo plugins

MIT license

18KB
402 lines

BumpIt

github crates.io

Mirrors the behaviour of npm version but for Rust. Supports individual packages and workspaces.

Installation

We provide both a cargo command and a standalone binary.

cargo install bumpit

Usage

Bump a level

# 0.1.0 -> 0.2.0
# 0.1.0-rc.0 -> 0.1.0
cargo bumpit minor

Bump and pre-release

# 0.1.0 -> 0.2.0-0
cargo bumpit preminor

Bump pre-release

# 0.1.0-0 -> 0.1.0-1
# 0.1.0 -> 0.1.1-0
cargo bumpit prerelease --pre-id rc

Pre-release with ID

# 0.1.0 -> 0.2.0-rc.0
cargo bumpit preminor --pre-id rc

Dependencies

~6–7.5MB
~137K SLoC