Skip to content

Commit 31c93da

Browse files
committed
workflow: fix feature release naming
1 parent 18844a0 commit 31c93da

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
@@ -87,34 +87,34 @@ We consider the following pull request types.
8787

8888
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.
8989

90-
Release: patch version
90+
Release: patch
9191

9292
##### Refactor
9393

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

97-
Release: minor version
97+
Release: feature
9898

9999
##### New target
100100

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

103-
Release: patch version
103+
Release: patch
104104

105105
##### Feature
106106

107-
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).
107+
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).
108108

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

111-
Release: minor version
111+
Release: feature
112112

113113
##### Breaking change
114114

115115
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.
116116

117-
Release: minor version
117+
Release: feature
118118

119119
##### Pull request template
120120

0 commit comments

Comments
 (0)