Skip to content

Commit

Permalink
docs: update maintenance guide
Browse files Browse the repository at this point in the history
  • Loading branch information
ralgozino committed Sep 15, 2022
1 parent d3b291e commit 3697987
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MAINTENANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 3697987

Please sign in to comment.