nucypher/newsfragments
derekpierre 6163ff4d25 Add dev newwsfragment for #3405. 2024-01-23 15:54:46 +01:00
..
.gitignore Initial setup for towncrier 2020-05-28 11:59:08 -07:00
3223.feature.rst Make Prometheus exporter always run along Ursula 2024-01-23 13:27:35 +01:00
3224.feature.rst Disable default collector metrics 2024-01-23 13:27:35 +01:00
3231.feature.rst Add Prometheus metrics endpoint to running logs 2024-01-23 13:27:35 +01:00
3232.removal.rst Rename host Prometheus metrics 2024-01-23 13:27:35 +01:00
3245.dev.rst Remove optional imports of Prometheus 2024-01-23 13:27:35 +01:00
3310.dev.rst newsfrag for PR #3310 2024-01-23 13:27:35 +01:00
3327.dev.rst newsfragment for PR #3327 2023-12-21 09:30:48 -05:00
3333.dev.rst Add newsfragment for #3333. 2024-01-19 11:04:31 +01:00
3339.feature.rst Remove unused metrics 2024-01-23 13:27:35 +01:00
3376.misc.rst Add newsfragment for #3376. 2024-01-04 13:23:02 -05:00
3386.dev.rst Add dev newsfragment for #3386. 2024-01-10 11:41:34 -05:00
3388.feature.rst Add newsfragment for #3388. 2024-01-23 13:27:35 +01:00
3390.bugfix.rst Add bugfix newsfragment for #3390. 2024-01-17 09:31:32 -05:00
3393.dev.rst newsfragment for 3393 2024-01-19 12:54:25 +01:00
3396.bugfix.rst add a newsfragment 2024-01-18 12:41:45 +01:00
3397.feature.rst Add newsfragment for #3397. 2024-01-23 13:27:35 +01:00
3405.dev.rst Add dev newwsfragment for #3405. 2024-01-23 15:54:46 +01: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.