Skip to content

Commit 30593d0

Browse files
committed
workflow: fix feature release naming
1 parent 320366e commit 30593d0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/reference/contributing/guidelines/workflow.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,34 +88,34 @@ We consider the following pull request types.
8888

8989
A bug fix should be backward-compatible internal change that fixes incorrect behavior. The fix should provide a description what and how it fixes the issue. The test should be included to catch this issue in the future and confirm the correct behavior.
9090

91-
Release: patch version
91+
Release: patch
9292

9393
##### Refactor
9494

95-
Refactors are intended for minor versions if they are not fixing specific issue as they
95+
Refactors are intended for feature releases if they are not fixing specific issue as they
9696
can introduce new issues.
9797

98-
Release: minor version
98+
Release: feature
9999

100100
##### New target
101101

102102
Adding a new target targets the patch release as it updating targets folder implementation.
103103

104-
Release: patch version
104+
Release: patch
105105

106106
##### Feature
107107

108-
New features targets minor releases. It can be integrated only if the feature supports most of the targets (if it requires new target HAL implementation).
108+
New features targets feature releases. It can be integrated only if the feature supports most of the targets (if it requires new target HAL implementation).
109109

110110
Adding a new functionality is considered to be a feature. It does not matter if it is C++ or C.
111111

112-
Release: minor version
112+
Release: feature
113113

114114
##### Breaking change
115115

116116
Any change that results in breaking user space. It should have strong justification to be considered. Often the change could be made backward compatible, for example deprecate the old functionality and introduce the new replacement.
117117

118-
Release: minor version
118+
Release: feature
119119

120120
##### Pull request template
121121

0 commit comments

Comments
 (0)