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
@@ -87,34 +87,34 @@ We consider the following pull request types.
87
87
88
88
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.
89
89
90
-
Release: patch version
90
+
Release: patch
91
91
92
92
##### Refactor
93
93
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
95
95
can introduce new issues.
96
96
97
-
Release: minor version
97
+
Release: feature
98
98
99
99
##### New target
100
100
101
101
Adding a new target targets the patch release as it updating targets folder implementation.
102
102
103
-
Release: patch version
103
+
Release: patch
104
104
105
105
##### Feature
106
106
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).
108
108
109
109
Adding a new functionality is considered to be a feature. It does not matter if it is C++ or C.
110
110
111
-
Release: minor version
111
+
Release: feature
112
112
113
113
##### Breaking change
114
114
115
115
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