3 releases

0.2.3 Oct 14, 2021
0.2.2 Aug 27, 2021
0.2.1 Aug 27, 2021

#650 in Cargo plugins

46 downloads per month

MIT license

9KB
283 lines

cargo-ver

cargo-ver is a cargo extension to manage crate versions.

Usage

This command should always be invoked from cargo.


# show the current version
$ cargo ver
0.1.0
# set the crate version to 0.2.5
$ cargo ver set 0.2.5
updated version: 0.1.0 -> 0.2.5
# bump the major version
# short: cargo ver b maj
$ cargo ver bump major
updated version: 0.2.5 -> 1.0.0

Installation

Option 1: From crates.io

cargo install --locked cargo-ver

Option 2: Clone the project

git clone github.com/insomnimus/cargo-ver
cd cargo-ver
git checkout main
cargo install --locked --path .

Dependencies

~4MB
~67K SLoC