|
| 1 | +RELEASE_TYPE: patch |
| 2 | + |
| 3 | +This patch improves import-detection in :doc:`the Ghostwriter <ghostwriter>` |
| 4 | +(:issue:`3884`), particularly for :func:`~hypothesis.strategies.from_type` |
| 5 | +and strategies from ``hypothesis.extra.*``. |
| 6 | + |
| 7 | +Thanks to <contributor's name or handle> for this <contribution/fix/feature>! |
| 8 | + |
| 9 | +--- |
| 10 | + |
| 11 | +In the example above, "patch" on the first line should be replaced by |
| 12 | +"minor" if changes are visible in the public API, or "major" if there are |
| 13 | +breaking changes. Note that only maintainers should ever make a major |
| 14 | +release. |
| 15 | + |
| 16 | +The remaining lines are the actual changelog text for this release, |
| 17 | +which should: |
| 18 | + |
| 19 | +- concisely describe what changed _in the public API_, and why. |
| 20 | + Internal-only changes can be documented as e.g. "This release improves |
| 21 | + an internal invariant." (the complete changelog for version 6.99.11) |
| 22 | +- use ``double backticks`` for verbatim code, |
| 23 | +- use Sphinx cross-references to any functions or classes mentioned: |
| 24 | + - :pypi:`package` for links to external packages, |
| 25 | + - :func:`package.function` for link to functions, where the link text will |
| 26 | + be ``package.function``, or :func:`~package.function` to show ``function``, |
| 27 | + - :class:`package.class` for link to classes (abbreviated as above), |
| 28 | + - :issue:`issue-number` for referencing issues, |
| 29 | + - :doc:`link text <chapter#anchor>` for documentation references |
| 30 | + (``https://hypothesis.readthedocs.io/en/latest/<chapter>.html#<anchor>``) |
| 31 | +- finish with a note of thanks from the maintainers. If this is your first |
| 32 | + contribution, don't forget to add yourself to AUTHORS.rst! |
| 33 | + |
| 34 | +After the PR is merged, the contents of this file (except the first line) |
| 35 | +are automatically added to ``docs/changes.rst``. More examples can be found |
| 36 | +in that file. |
0 commit comments