From 63c171612889102dfae5f7270be78b567cf4251b Mon Sep 17 00:00:00 2001 From: David Lord Date: Thu, 13 Jul 2023 07:58:38 -0700 Subject: [PATCH] release version 8.1.5 --- CHANGES.rst | 6 +++--- src/click/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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"