Skip to content

Commit

Permalink
docs: note how to author breaking change commits (#2433)
Browse files Browse the repository at this point in the history
  • Loading branch information
straker authored Aug 4, 2020
1 parent f006c40 commit b315904
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion doc/code-submission-guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,15 @@ Use the imperative, present tense: "change" not "changed" nor "changes", just li

Reference any issue that this commit closes with its fully qualified URL to support both Bitbucket and Github.

If needed, the footer should contain any information about Breaking Changes. Deprecation notices or breaking changes in the Changelog should inform users if they'll need to modify their code after this commit.
If needed, the footer should contain any information about [Breaking Changes](https://www.conventionalcommits.org/en/v1.0.0/). Deprecation notices or breaking changes in the Changelog should inform users if they'll need to modify their code after this commit.

A breaking change should be noted with `BREAKING CHANGE:` (all caps, followed by a colon) and a message.

```
feat(rules): remove deprecated rules
BREAKING CHANGE: remove rules: th-has-headers, checkboxgroup, radiogroup
```

## Submitting a pull request

Expand Down

0 comments on commit b315904

Please sign in to comment.