From 5693d0a66c712c16be810f7c13402ce6e7664e2e Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Thu, 24 Nov 2022 09:51:35 +0000 Subject: [PATCH] Prepare for release 22.11.0 (#306) * Update CHANGELOG.md * Update pyi.py --- CHANGELOG.md | 2 +- pyi.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5f75c8b..76bd53bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## Unreleased +## 22.11.0 Bugfixes: * Specify encoding when opening files. Prevents `UnicodeDecodeError` on Windows diff --git a/pyi.py b/pyi.py index 72462720..5c66a325 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.10.0" +__version__ = "22.11.0" LOG = logging.getLogger("flake8.pyi") FLAKE8_MAJOR_VERSION = flake8.__version_info__[0]