nucypher/newsfragments
derekpierre 2fb3a86c61 Add dev newsfragment for #3046. 2023-01-05 14:33:12 -05:00
..
.gitignore Initial setup for towncrier 2020-05-28 11:59:08 -07:00
2942.removal.rst Add newsfragment for #2942. 2022-05-13 11:45:14 -04:00
2943.bugfix.rst workaround for failure to estimate gas occuring on Ropsten 2022-05-16 17:21:35 -07:00
2944.misc.rst Add newsfragment for #2944. 2022-05-20 08:44:13 -04:00
2945.doc.rst Add newsfragment forr #2945. 2022-06-06 09:46:17 -04:00
2946.bugfix.rst Add a newsfragment for PR #2946 2022-05-25 18:27:45 -07:00
2950.misc.rst Added newsfragment for PR 2022-06-28 15:59:40 +03:00
2952.bugfix.rst Add newsfragment for #2952. 2022-06-27 11:44:49 -04:00
2952.misc.rst Update policy probationary period to August 31st, 2022. 2022-06-27 17:10:08 -04:00
2954.misc.rst Add newsfragment for #2954. 2022-07-04 11:06:09 -04:00
2985.removal.rst newsfragment for PR #2985 2022-10-25 16:18:18 +01:00
2986.feature.rst newsfragment for PR #2986 2022-11-08 01:25:26 +00:00
2987.removal.rst newsfrgment for PR #2987 2022-10-26 10:22:04 +01:00
2988.removal.rst newsfragment for PR #2988 2022-10-27 10:12:17 +01:00
2989.removal.rst newsfragment for PR #2989 2022-10-27 10:13:18 +01:00
2990.removal.rst newsfragment for PR #2990 2022-10-27 17:30:13 +01:00
2996.feature.rst Add tapir network to network, nodes, and registry 2022-11-01 13:59:45 +00:00
2998.removal.rst newsfrgment for PR #2998 2022-11-02 13:25:43 +00:00
3000.feature.rst Update contract registry for lynx 2022-11-02 15:26:41 +00:00
3002.feature.rst Add newsfragment to the PR 3002 2022-11-14 14:31:54 +00:00
3014.bugfix.rst Fix newsfragment and ensure conditions test has a valid method 2022-11-15 14:58:56 +00:00
3019.dev.rst Add newsfragment for #3019. 2022-11-24 10:51:11 -05:00
3021.dev.rst newsfragment for PR #3021 2022-11-17 15:22:55 +00:00
3022.dev.rst Add dev newsfragment for #3022. 2022-11-16 14:09:13 -05:00
3023.dev.rst newsfragment for PR #3023 2022-11-17 16:34:08 +00:00
3024.dev.rst Add dev newsfragment for #3024. 2022-11-17 09:52:07 -05:00
3025.bugfix.rst Add newsfragment for #3025. 2022-11-17 15:26:49 -05:00
3026.dev.rst Add newsfragment for #3026. 2022-11-22 12:04:26 -05:00
3028.dev.rst Add newsfragment for #3028. 2022-11-28 10:20:15 -05:00
3029.dev.rst Add dev newsfragment for #3029. 2022-11-28 16:34:20 -05:00
3030.removal.rst newsfragment for PR #3030 2022-12-07 11:29:26 +00:00
3032.bugfix.rst Restrict return value `key` to only be an integer 2022-12-05 16:58:57 +00:00
3034.dev.rst Add dev newsfragment for #3034. 2022-12-22 15:17:42 -05:00
3037.dev.rst Add dev newsfragment for #3037. 2022-12-09 14:04:52 -05:00
3040.dev.rst Add dev newsfragment for #3040. 2022-12-23 09:12:48 -05:00
3042.bugfix.rst Add newsfragment for #3042. 2022-12-23 09:13:41 -05:00
3046.dev.rst Add dev newsfragment for #3046. 2023-01-05 14:33:12 -05: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.