bumpit 0.1.0

Bump the version of packages
Documentation

BumpIt

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