diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 481a6569..fd7eb938 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,8 @@ Change Log ---------- -22.1.0rc1 -~~~~~~~~~ +22.1.0 +~~~~~~ * extend Y001 to cover ParamSpec and TypeVarTuple in addition to TypeVar * detect usage of non-integer indices in ``sys.version_info`` checks diff --git a/pyi.py b/pyi.py index a7150ee6..92555b3a 100644 --- a/pyi.py +++ b/pyi.py @@ -35,7 +35,7 @@ if TYPE_CHECKING: from typing import TypeGuard -__version__ = "22.1.0rc1" +__version__ = "22.1.0" LOG = logging.getLogger("flake8.pyi")