From 39867c25ccfed389527a6bebcf750cffc7fd0743 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Fri, 6 Jan 2023 16:46:08 -0500 Subject: [PATCH] Cut 3.0.1 --- docs/changelog.rst | 1 + invocations/_version.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 1c3722b..9e85e55 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,7 @@ Changelog ========= +- :release:`3.0.1 <2023-01-06>` - :bug:`-` We neglected to remove references to ``six`` in a few spots - including some that utilized Invoke's old vendor of same; this causes issues when trying to use development and upcoming versions of Invoke. Six is now diff --git a/invocations/_version.py b/invocations/_version.py index 0683310..d8255b3 100644 --- a/invocations/_version.py +++ b/invocations/_version.py @@ -1,2 +1,2 @@ -__version_info__ = (3, 0, 0) +__version_info__ = (3, 0, 1) __version__ = ".".join(map(str, __version_info__))