@@ -53,8 +53,18 @@ The `type` can be any of `feat`, `fix` or `chore`.
53
53
54
54
The prefix is used to calculate the semver release level, and the section of the release notes to place the commit message in.
55
55
56
- | ** type** | when to use | release level | release note section |
57
- | --------- | ----------------------------------- | ------------- | -------------------- |
58
- | feat | a feature has been added | ` minor ` | ** Features** |
59
- | fix | a bug has been patched | ` patch ` | ** Bug fixes** |
60
- | chore | any changes that aren't user-facing | none | none |
56
+ | ** type** | When to Use | Release Level | Release Note Section |
57
+ | ---------- | ----------------------------------- | ------------- | -------------------- |
58
+ | feat | A feature has been added | ` minor ` | ** Added** |
59
+ | fix | A bug has been patched | ` patch ` | ** Fixed** |
60
+ | deps | Changes to the dependencies | ` patch ` | ** Changed** |
61
+ | perf | Performance improvements | none | ** Performance Improvements** |
62
+ | chore | Any changes that aren't user-facing | none | none |
63
+ | docs | Documentation updates | none | none |
64
+ | style | Code style and formatting changes | none | none |
65
+ | refactor | Code refactoring | none | none | |
66
+ | test | Adding tests or test-related changes| none | none |
67
+ | build | Build system or tooling changes | none | none |
68
+ | ci | Continuous Integration/Deployment | none | none |
69
+ | revert | Reverting a previous commit | none | none |
70
+ | wip | Work in progress (temporary) | none | none |
0 commit comments