diff --git a/CHANGELOG.md b/CHANGELOG.md index 36b8b2be..f945160c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## Unreleased +## 22.8.2 New error codes: * Y047: Detect unused `TypeAlias` declarations. diff --git a/pyi.py b/pyi.py index 476ce398..9b05e9fa 100644 --- a/pyi.py +++ b/pyi.py @@ -39,7 +39,7 @@ def unparse(node: ast.AST) -> str: # and mypy thinks typing_extensions is part of the stdlib. from typing_extensions import Literal, TypeAlias, TypeGuard -__version__ = "22.8.1" +__version__ = "22.8.2" LOG = logging.getLogger("flake8.pyi") FLAKE8_MAJOR_VERSION = flake8.__version_info__[0]