about summary refs log tree commit diff
path: root/docs/dev
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-04-19 18:38:34 +0000
committerGitHub <noreply@github.com>2021-04-19 18:38:34 +0000
commit15b34667c55e894e0a4881d1544bd2e89f932c01 (patch)
treef537f3e7a0cca7ed8a4f7340bbcef00c87ec0b98 /docs/dev
parentb6a7276c5435da2431eb7dd783aa09c0cd718371 (diff)
parentbb4952da042ed5f6bffe2b362de053b4240deb21 (diff)
downloadrust-15b34667c55e894e0a4881d1544bd2e89f932c01.tar.gz
rust-15b34667c55e894e0a4881d1544bd2e89f932c01.zip
Merge #8588
8588: internal: Add guidelines for release notes PR descriptions r=matklad a=lnicola



Co-authored-by: Laurențiu Nicola <lnicola@dend.ro>
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/style.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/dev/style.md b/docs/dev/style.md
index 078c478d41b..6ab60b50ed7 100644
--- a/docs/dev/style.md
+++ b/docs/dev/style.md
@@ -83,8 +83,19 @@ This makes it easier to prepare a changelog.
 
 If the change adds a new user-visible functionality, consider recording a GIF with [peek](https://github.com/phw/peek) and pasting it into the PR description.
 
+To make writing the release notes easier, you can mark a pull request as a feature, fix, internal change, or minor.
+Minor changes are excluded from the release notes, while the other types are distributed in their corresponding sections.
+There are two ways to mark this:
+
+* use a `feat: `, `feature: `, `fix: `, `internal: ` or `minor: ` prefix in the PR title
+* write `changelog [feature|fix|internal|skip] [description]` in a comment or in the PR description; the description is optional, and will replace the title if included.
+
+These comments don't have to be added by the PR author.
+Editing a comment or the PR description or title is also fine, as long as it happens before the release.
+
 **Rationale:** clean history is potentially useful, but rarely used.
 But many users read changelogs.
+Including a description and GIF suitable for the changelog means less work for the maintainers on the release day.
 
 ## Clippy