From 068b460078f0332711f4603a8a660e2f64fb28bd Mon Sep 17 00:00:00 2001 From: Louis Fortier-Dubois Date: Wed, 25 Oct 2023 08:59:46 -0400 Subject: [PATCH] add bump command (#901) --- CONTRIBUTING.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b653f56e1..5ca0163ec 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -119,6 +119,13 @@ Run `scripts/publish` using this command where `crate_name` is the name of the crate to publish +## Others + +To bump for the next version, use this command: + +``` +cargo set-version --bump minor +``` ---