https://github.com/caido/bumpit
Semver version bump
https://github.com/caido/bumpit
bump cargo semver
Last synced: about 2 months ago
JSON representation
Semver version bump
- Host: GitHub
- URL: https://github.com/caido/bumpit
- Owner: caido
- License: mit
- Created: 2025-07-16T18:38:22.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-07-16T20:48:08.000Z (3 months ago)
- Last Synced: 2025-08-17T18:44:28.002Z (about 2 months ago)
- Topics: bump, cargo, semver
- Language: Rust
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# BumpIt
[
](https://github.com/caido/bumpit)
[](https://crates.io/crates/bumpit)
Mirrors the behaviour of [npm version](https://docs.npmjs.com/cli/v8/commands/npm-version) but for Rust.
Supports individual packages and workspaces.## Installation
We provide both a cargo command and a standalone binary.
```sh
cargo install bumpit
```## Usage
### Bump a level
```sh
# 0.1.0 -> 0.2.0
# 0.1.0-rc.0 -> 0.1.0
cargo bumpit minor
```### Bump and pre-release
```sh
# 0.1.0 -> 0.2.0-0
cargo bumpit preminor
```### Bump pre-release
```sh
# 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
```sh
# 0.1.0 -> 0.2.0-rc.0
cargo bumpit preminor --pre-id rc
```