From 3697987043b68bffde621f3b40b474570869f39e Mon Sep 17 00:00:00 2001 From: Ramiro Algozino Date: Thu, 15 Sep 2022 18:21:09 +0200 Subject: [PATCH] docs: update maintenance guide --- MAINTENANCE.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MAINTENANCE.md b/MAINTENANCE.md index 987a279b..0ea42127 100644 --- a/MAINTENANCE.md +++ b/MAINTENANCE.md @@ -13,16 +13,16 @@ Releasing a new version of GPM is done automatically with our CI, to trigger the For example, assuming the latest version is 1.0.0, to release a new patch version run: ```bash -bumpversion --dry-run --new-version 1.0.1 bugfix +bumpversion --dry-run --verbose --new-version 1.0.1 bugfix ``` or to release a new minor: ```bash -bumpversion --dry-run --new-version 1.1.0 minor +bumpversion --dry-run --verbose --new-version 1.1.0 minor ``` -> Notice that the command includes a `--dry-run` flag, drop it to actually perform the change. +> Notice that the command includes a `--dry-run` flag, drop it to actually perform the change. You can drop the `--verbose` flag too. 1. `bumpversion` will create some commits and tags, you'll need to push the commits and then the tags