nucypher/newsfragments
derekpierre e0e5e8655a
Add newsfragment for #3467.
2024-04-25 13:44:14 -04:00
..
.gitignore Initial setup for towncrier 2020-05-28 11:59:08 -07:00
3437.feature.rst newsfragments/3437 2024-03-25 13:32:21 -04:00
3438.dev.rst newsfragments/3438.dev.rst 2024-03-25 13:32:13 -04:00
3439.dev.rst newsfragments/3439 2024-03-25 13:32:05 -04:00
3457.dev.rst newsfragments/3457.dev.rst 2024-03-25 13:32:33 -04:00
3462.dev.rst Add dev newsfragment for #3462. 2024-03-25 13:32:48 -04:00
3464.dev.rst Add dev newsfragment for #3464. 2024-03-25 13:32:44 -04:00
3465.bugfix.rst Add newsfragment for #3465. 2024-03-25 13:43:19 -04:00
3467.feature.rst Add newsfragment for #3467. 2024-04-25 13:44:14 -04:00
3468.misc.rst Add newsfragment for #3468. 2024-04-10 09:09:36 -04:00
3473.dev.rst Add dev newsfragment for #3473. 2024-04-10 13:16:25 -04:00
3476.feature.rst Add newsfragment for #3476. 2024-04-15 13:30:45 -04:00
3477.dev.rst Add dev newsfragment for #3477. 2024-04-12 09:06:55 -04:00
3478.bugfix.rst Add newsfragment file 2024-04-15 14:16:55 +02:00
3479.misc.rst Add newsfragment for #3479. 2024-04-18 13:37:31 -04:00
3483.bugfix.rst Update newsfragment. 2024-04-19 15:00:00 -04:00
3483.feature.rst Add newsfragments for #3483. 2024-04-19 14:59:55 -04:00
3484.dev.rst Add dev newsfragment for #3484. 2024-04-19 08:14:38 -04:00
3486.bugfix.rst Add newsfragment for #3486. 2024-04-22 20:38:36 -04:00
3487.misc.rst Add newsfragment for #3487. 2024-04-23 08:18:44 -04:00
3489.misc.rst Add newsfragment for #3489. 2024-04-24 18:58:04 -04:00
README.md Dev newsfragments will show up in release notes but under its own section (off to the side). 2022-11-17 09:29:45 -05:00
validate_files.py Allow for *.dev.rst newsfragments for dev-specific work, which allows for the release note gh action to pass without including information (pr/issue number) in the release notes. 2022-11-16 14:07:38 -05:00

README.md

This directory collects "newsfragments": short files that each contain a snippet of ReST-formatted text that will be added to the next release notes. This should be a description of aspects of the change (if any) that are relevant to users. It contrasts with the commit message and PR description, which are descriptions of the change relevant to people working on the code itself.

The pull request (PR) number should be included in the newsfragment file name. Each newsfragment file should be named <PR_NUMBER>.<TYPE>.rst, where <TYPE> is one of:

  • feature - features
  • bugfix - bugfixes
  • doc - documentation
  • removal - deprecations and removals
  • misc - other
  • dev - internal development tasks

For example: 123.feature.rst, 456.bugfix.rst, 789.doc.rst.

There can be multiple newsfragment files of different types for the same PR e.g. 123.feature.rst and 123.removal.rst.

Along with the required PR newsfragment file (enforced by a GitHub Action), additional newsfragment files for issues linked to the PR can optionally be included by following the same naming convention above, and using <ISSUE_NUMBER> instead of <PR_NUMBER>.

Note that the towncrier tool will automatically reflow your text, so don't try to do any fancy formatting. Run towncrier --draft to preview what the release notes entry will look like in the final release notes.