Crates.io | cargo-v |
lib.rs | cargo-v |
version | 1.0.1 |
source | src |
created_at | 2022-05-23 11:35:06.126114 |
updated_at | 2022-06-23 23:18:54.386873 |
description | Update the version of your package easily |
homepage | |
repository | https://github.com/fdaciuk/cargo-v |
max_upload_size | |
id | 591735 |
size | 26,686 |
An easy way to update the version of your package
cargo install cargo-v
This CLI is intended to update the version of your package using the SemVer.
Before using this CLI, make sure you:
cargo build
command to ensure your package doesn't have any errors;Cargo.toml
and Cargo.lock
, that will be "git added" automatically by the CLI);You can update the version of your project using the command:
cargo v <version>
Where <version>
can be one of patch
, minor
, major
or a complete string
version like v1.1.0
or just 1.1.0
.
You can use <version>
just as a partial string version like 2
or 2.1
, that
is the same as v2.0.0
and v2.1.0
respectively.
The above command will do:
Cargo.toml
;Cargo.lock
;Before do a git commit
and git tag
, you will be asked if everything is ok with your project.
To automatically answer yes to all questions, just use the flag -y
or --yes
:
cargo v <version> -y
To see all possible options, just run cargo v --help
.
👤 Fernando Daciuk
Contributions, issues and feature requests are welcome!
Feel free to check issues page.
Thanks goes to these wonderful people (emoji key):
Fernando Daciuk 💻 📖 |
Matheus Henrique 💻 📖 |
This project follows the all-contributors specification. Contributions of any kind welcome!
Give a ⭐️ if this project helped you!
Copyright © 2022 Fernando Daciuk.
This project is MIT licensed.
This README was generated with ❤️ by readme-md-generator