File: RELEASE-sample.rst

package info (click to toggle)
python-hypothesis 6.138.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 15,272 kB
  • sloc: python: 62,853; ruby: 1,107; sh: 253; makefile: 41; javascript: 6
file content (40 lines) | stat: -rw-r--r-- 1,939 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
RELEASE_TYPE: patch

This patch improves import-detection in :doc:`the Ghostwriter <ghostwriter>`
(:issue:`3884`), particularly for :func:`~hypothesis.strategies.from_type`
and strategies from ``hypothesis.extra.*``.

Thanks to <contributor's name or handle> for this <contribution/fix/feature>!

---

In the example above, "patch" on the first line should be replaced by
"minor" if changes are visible in the public API, or "major" if there are
breaking changes.  Note that only maintainers should ever make a major
release.

The remaining lines are the actual changelog text for this release,
which should:

- concisely describe what changed _in the public API_, and why.
  Internal-only changes can be documented as e.g. "This release improves
  an internal invariant." (the complete changelog for version 6.99.11)
- use ``double backticks`` for verbatim code,
- use Sphinx cross-references to any functions or classes mentioned:
  - :pypi:`package` for links to external packages.
  - :func:`package.function` for link to functions, where the link text will
    be ``package.function``, or :func:`~package.function` to show ``function``.
  - :class:`package.class` for link to classes (abbreviated as above).
  - :issue:`issue-number` for referencing issues.
  - Similarly, :pull:`pr-number` can be used for PRs, but it's usually
    preferred to refer to version numbers with :v:`6.98.9`,
    as they are meaningful to end users.
  - :doc:`link text <chapter#anchor>` for documentation references.
  - `link text <https://hypothesis.readthedocs.io/en/latest/chapter.html#anchor>`__
    is the same link, for general web addresses.
- finish with a note of thanks from the maintainers. If this is your first
  contribution, don't forget to add yourself to AUTHORS.rst!

After the PR is merged, the contents of this file (except the first line)
are automatically added to ``docs/changelog.rst``. More examples can be found
in that file.