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__))