Skip to content

Commit 8fcf9b0

Browse files
committed
CHANGES: fix rst markup.
1 parent 24969c0 commit 8fcf9b0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

CHANGES.rst

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Unreleased
77

88
- Drop support for Python 3.7. :pr:`2588`
99
- Use modern packaging metadata with ``pyproject.toml`` instead of ``setup.cfg``.
10-
:pr:`326`
10+
:pr:`2438`
1111
- Use ``flit_core`` instead of ``setuptools`` as build backend. :pr:`2543`
1212
- Deprecate the ``__version__`` attribute. Use feature detection, or
1313
``importlib.metadata.version("click")``, instead. :issue:`2598`
@@ -41,7 +41,7 @@ Unreleased
4141
:pr:`2517`
4242
- Keep stdout and stderr streams independent in ``CliRunner``. Always
4343
collect stderr output and never raise an exception. Add a new
44-
output` stream to simulate what the user sees in its terminal. Removes
44+
output stream to simulate what the user sees in its terminal. Removes
4545
the ``mix_stderr`` parameter in ``CliRunner``. :issue:`2522` :pr:`2523`
4646
- ``Option.show_envvar`` now also shows environment variable in error messages.
4747
:issue:`2695` :pr:`2696`
@@ -50,7 +50,7 @@ Unreleased
5050
``Context.with_resource`` to be closed on exit as well. :pr:`2680`
5151
- Add ``ProgressBar(hidden: bool)`` to allow hiding the progressbar. :issue:`2609`
5252
- A ``UserWarning`` will be shown when multiple parameters attempt to use the
53-
same name. :issue:`2396``
53+
same name. :issue:`2396`
5454
- When using ``Option.envvar`` with ``Option.flag_value``, the ``flag_value``
5555
will always be used instead of the value of the environment variable.
5656
:issue:`2746` :pr:`2788`
@@ -60,7 +60,7 @@ Unreleased
6060
for groups, ``False`` for commands), the exit code is 2 instead of 0.
6161
:issue:`1489` :pr:`1489`
6262
- Contexts created during shell completion are closed properly, fixing
63-
``ResourceWarning``s when using ``click.File``. :issue:`2644` :pr:`2800`
63+
a ``ResourceWarning`` when using ``click.File``. :issue:`2644` :pr:`2800`
6464
:pr:`2767`
6565
- ``click.edit(filename)`` now supports passing an iterable of filenames in
6666
case the editor supports editing multiple files at once. Its return type
@@ -88,14 +88,14 @@ Unreleased
8888
- Parameters cannot be required nor prompted or an error is raised.
8989
- A warning will be printed when something deprecated is used.
9090

91-
- Add a ``catch_exceptions`` parameter to :class:``CliRunner``. If
92-
``catch_exceptions`` is not passed to :meth:``CliRunner.invoke``,
93-
the value from :class:`CliRunner`. :issue:`2817` :pr:`2818`
91+
- Add a ``catch_exceptions`` parameter to ``CliRunner``. If
92+
``catch_exceptions`` is not passed to ``CliRunner.invoke``,
93+
the value from ``CliRunner``. :issue:`2817` :pr:`2818`
9494
- ``Option.flag_value`` will no longer have a default value set based on
9595
``Option.default`` if ``Option.is_flag`` is ``False``. This results in
9696
``Option.default`` not needing to implement `__bool__`. :pr:`2829`
9797
- Incorrect ``click.edit`` typing has been corrected. :pr:`2804`
98-
- :class:``Choice`` is now generic and supports any iterable value.
98+
- ``Choice`` is now generic and supports any iterable value.
9999
This allows you to use enums and other non-``str`` values. :pr:`2796`
100100
:issue:`605`
101101

0 commit comments

Comments
 (0)