@@ -192,16 +192,15 @@ If the commit reverts a previous commit, it should begin with `revert: `, follow
192192# ## Type
193193Must be one of the following:
194194
195- * ** build** : Changes that affect the build system or external dependencies. [2]
196- * ** ci** : Changes to our CI configuration files and scripts. [2]
197- * ** docs** : Documentation only changes.
198- * ** feat** : A new feature. [1]
199- * ** fix** : A bug fix. [1]
200- * ** refactor** : A code change that neither fixes a bug nor adds a feature
201- * ** release** : A release commit. Must only include version changes. [2]
202- * ** revert** : A git commit revert. The description must include the original commit message. [2]
203- * ** style** : Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc).
204- * ** test** : Adding missing tests or correcting existing tests.
195+ * ** build** : Changes to local repository build system and tooling
196+ * ** ci** : Changes to CI configuration and CI specific tooling [2]
197+ * ** docs** : Changes which exclusively affects documentation.
198+ * ** feat** : Creates a new feature [1]
199+ * ** fix** : Fixes a previously discovered failure/bug [1]
200+ * ** perf** : Improves performance without any change in functionality or API [1]
201+ * ** refactor** : Refactor without any change in functionality or API (includes style changes) [1]
202+ * ** release** : A release point in the repository [2]
203+ * ** test** : Improvements or corrections made to the project' s test suite [1]
205204
206205
207206<sup>[1] This type MUST have a scope. See the next section for more information.</sup><br/>
0 commit comments