Skip to content

Commit

Permalink
docs(commits-types): bump minor and patch options
Browse files Browse the repository at this point in the history
  • Loading branch information
ABWassim authored and oknozor committed Mar 7, 2024
1 parent facdefb commit dd5517b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/website/config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,29 @@ The config reference list all value that can be set in the `cog.toml` file at th
[commit_types]
chore = { changelog_title = "Chore", omit_from_changelog = true }
```

### `bump_patch`
- Type: `Bool`
- Optional: `true`
- Default value: `false`
- Description: commits of this type will bump the patch version of a tag.
- Example:
```toml
[commit_types]
chore = { changelog_title = "Chore", bump_patch = true }
```

### `bump_minor`
- Type: `Bool`
- Optional: `true`
- Default value: `false`
- Description: commits of this type will bump the minor version of a tag.
- Example:
```toml
[commit_types]
chore = { changelog_title = "Chore", bump_minor = true }
```

## Bump config

### `pre_bump_hooks`
Expand Down

0 comments on commit dd5517b

Please sign in to comment.