From 8ea5260366e6f37ab5bcb1abdf8111dbe5f7c8af Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Mon, 15 May 2023 18:15:28 -0400 Subject: [PATCH] Cut 2.1.2 --- invoke/_version.py | 2 +- sites/www/changelog.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/invoke/_version.py b/invoke/_version.py index 572fcf1e..84c6b37f 100644 --- a/invoke/_version.py +++ b/invoke/_version.py @@ -1,2 +1,2 @@ -__version_info__ = (2, 1, 1) +__version_info__ = (2, 1, 2) __version__ = ".".join(map(str, __version_info__)) diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst index ab0505db..ee105f67 100644 --- a/sites/www/changelog.rst +++ b/sites/www/changelog.rst @@ -2,6 +2,7 @@ Changelog ========= +- :release:`2.1.2 <2023-05-15>` - :support:`936 backported` Make sure ``py.typed`` is in our packaging manifest; without it, users working from a regular installation can't perform type checks. Thanks to Nikita Sobolev for catch & patch.