You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that Commitizen ignores everything after `+` when it bumps the version. It is therefore safe to write different build-metadata between versions.
283
283
284
284
You should normally not use this functionality, but if you decide to do, keep in mind that
285
-
* Version `1.2.3+a`, and `1.2.3+b` are the same version! Tools should not use the string after `+` for version calculation. This is probably not a guarantee (example in helm) even tho it is in the spec.
286
-
* It might be problematic having the metadata in place when doing upgrades depending on what tool you use.
285
+
- Version `1.2.3+a`, and `1.2.3+b` are the same version! Tools should not use the string after `+` for version calculation. This is probably not a guarantee (example in helm) even tho it is in the spec.
286
+
- It might be problematic having the metadata in place when doing upgrades depending on what tool you use.
287
287
288
288
### `--get-next`
289
289
@@ -318,6 +318,18 @@ The `--get-next` flag will raise a `NoneIncrementExit` if the found commits are
318
318
319
319
For information on how to suppress this exit, see [avoid raising errors](#avoid-raising-errors).
320
320
321
+
### `--allow-no-commit`
322
+
323
+
Allow the project version to be bumped even when there's no eligible version. This is most useful when used with `--increment {MAJOR,MINOR,PATCH}` or `[MANUL_VERSION]`
324
+
325
+
```sh
326
+
# bump a minor version even when there's only bug fixes, documentation changes or even no commits
327
+
cz bump --incremental MINOR --allow-no-commit
328
+
329
+
# bump version to 2.0.0 even when there's no breaking changes changes or even no commits
330
+
cz bump --allow-no-commit 2.0.0
331
+
```
332
+
321
333
## Avoid raising errors
322
334
323
335
Some situations from commitizen raise an exit code different than 0.
@@ -389,13 +401,13 @@ cz -nr 21 bump
389
401
390
402
These are used in:
391
403
392
-
*`cz bump`: Find previous release tag (exact match) and generate new tag.
393
-
* Find previous release tags in `cz changelog`.
394
-
* If `--incremental`: Using latest version found in the changelog, scan existing Git tags with 89\% similarity match.
395
-
*`--rev-range` is converted to Git tag names with `tag_format` before searching Git history.
396
-
* If the `scm``version_provider` is used, it uses different regexes to find the previous version tags:
397
-
* If `tag_format` is set to `$version` (default): `VersionProtocol.parser` (allows `v` prefix)
398
-
* If `tag_format` is set: Custom regex similar to SemVer (not as lenient as PEP440 e.g. on dev-releases)
404
+
-`cz bump`: Find previous release tag (exact match) and generate new tag.
405
+
- Find previous release tags in `cz changelog`.
406
+
- If `--incremental`: Using latest version found in the changelog, scan existing Git tags with 89\% similarity match.
407
+
-`--rev-range` is converted to Git tag names with `tag_format` before searching Git history.
408
+
- If the `scm``version_provider` is used, it uses different regexes to find the previous version tags:
409
+
- If `tag_format` is set to `$version` (default): `VersionProtocol.parser` (allows `v` prefix)
410
+
- If `tag_format` is set: Custom regex similar to SemVer (not as lenient as PEP440 e.g. on dev-releases)
399
411
400
412
Commitizen supports 2 types of formats, a simple and a more complex.
0 commit comments