]> git.lizzy.rs Git - rust.git/blob - doc/changelog_update.md
Auto merge of #5695 - esamudera:lint_mem_uninitialized, r=phansch,oli-obk
[rust.git] / doc / changelog_update.md
1 # Changelog Update
2
3 If you want to help with updating the [changelog][changelog], you're in the right place.
4
5 ## When to update
6
7 Typos and other small fixes/additions are _always_ welcome.
8
9 Special care needs to be taken when it comes to updating the changelog for a new
10 Rust release. For that purpose, the changelog is ideally updated during the week
11 before an upcoming stable release. You can find the release dates on the [Rust
12 Forge][forge].
13
14 Most of the time we only need to update the changelog for minor Rust releases. It's
15 been very rare that Clippy changes were included in a patch release.
16
17 ## Changelog update walkthrough
18
19 ### 1. Finding the relevant Clippy commits
20
21 Each Rust release ships with its own version of Clippy. The Clippy subtree can
22 be found in the `tools` directory of the Rust repository.
23
24 Depending on the current time and what exactly you want to update, the following
25 bullet points might be helpful:
26
27 * When writing the release notes for the **upcoming stable release** you need to check
28   out the Clippy commit of the current Rust `beta` branch. [Link][rust_beta_tools]
29 * When writing the release notes for the **upcoming beta release**, you need to check
30   out the Clippy commit of the current Rust `master`. [Link][rust_master_tools]
31 * When writing the (forgotten) release notes for a **past stable release**, you
32   need to select the Rust release tag from the dropdown and then check the
33   commit of the Clippy directory:
34
35 To find the commit hash, issue the following command when in a `rust-lang/rust` checkout:
36 ```
37 git log --oneline -- src/tools/clippy/ | grep -o "Merge commit '[a-f0-9]*' into .*" | head -1 | sed -e "s/Merge commit '\([a-f0-9]*\)' into .*/\1/g"
38 ```
39
40 ### 2. Fetching the PRs between those commits
41
42 Once you've got the correct commit range, run
43
44     util/fetch_prs_between.sh commit1 commit2 > changes.txt
45
46 and open that file in your editor of choice.
47
48 When updating the changelog it's also a good idea to make sure that `commit1` is
49 already correct in the current changelog.
50
51 ### 3. Authoring the final changelog
52
53 The above script should have dumped all the relevant PRs to the file you
54 specified. It should have filtered out most of the irrelevant PRs
55 already, but it's a good idea to do a manual cleanup pass where you look for
56 more irrelevant PRs. If you're not sure about some PRs, just leave them in for
57 the review and ask for feedback.
58
59 With the PRs filtered, you can start to take each PR and move the
60 `changelog: ` content to `CHANGELOG.md`. Adapt the wording as you see fit but
61 try to keep it somewhat coherent.
62
63 The order should roughly be:
64
65 1. New lints
66 2. Moves or deprecations of lints
67 3. Changes that expand what code existing lints cover
68 4. False positive fixes
69 5. Suggestion fixes/improvements
70 6. ICE fixes
71 7. Documentation improvements
72 8. Others
73
74 Please also be sure to update the Beta/Unreleased sections at the top with the
75 relevant commit ranges.
76
77 [changelog]: https://github.com/rust-lang/rust-clippy/blob/master/CHANGELOG.md
78 [forge]: https://forge.rust-lang.org/
79 [rust_master_tools]: https://github.com/rust-lang/rust/tree/master/src/tools/clippy
80 [rust_beta_tools]: https://github.com/rust-lang/rust/tree/beta/src/tools/clippy