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
Copy file name to clipboardExpand all lines: docs/reference/contributing/guidelines/workflow.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -88,34 +88,34 @@ We consider the following pull request types.
88
88
89
89
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.
90
90
91
-
Release: patch version
91
+
Release: patch
92
92
93
93
##### Refactor
94
94
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
96
96
can introduce new issues.
97
97
98
-
Release: minor version
98
+
Release: feature
99
99
100
100
##### New target
101
101
102
102
Adding a new target targets the patch release as it updating targets folder implementation.
103
103
104
-
Release: patch version
104
+
Release: patch
105
105
106
106
##### Feature
107
107
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).
109
109
110
110
Adding a new functionality is considered to be a feature. It does not matter if it is C++ or C.
111
111
112
-
Release: minor version
112
+
Release: feature
113
113
114
114
##### Breaking change
115
115
116
116
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.
0 commit comments