diff --git a/CHANGES.rst b/CHANGES.rst index dc406e1bb..795f7e550 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,10 +3,10 @@ Version 8.1.5 ------------- -Unreleased +Released 2023-07-13 -- Fix type hints for ``@click.command()`` and ``@click.option()``. Introduce typing - tests. :issue:`2558` +- Fix an issue with type hints for ``@click.command()``, ``@click.option()``, and + other decorators. Introduce typing tests. :issue:`2558` Version 8.1.4 diff --git a/src/click/__init__.py b/src/click/__init__.py index 687273c03..2d3f11801 100644 --- a/src/click/__init__.py +++ b/src/click/__init__.py @@ -70,4 +70,4 @@ from .utils import get_text_stream as get_text_stream from .utils import open_file as open_file -__version__ = "8.1.5.dev" +__version__ = "8.1.5"