diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6e7ad250..941230cb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,8 @@ Changelog ========= -3.0.1 (unreleased) ------------------- +3.0.1 +----- - Bugfix: 'Future exception was never retrieved' warning in SMTPProtocol after successful connection close and garbage collection. diff --git a/aiosmtplib/__init__.py b/aiosmtplib/__init__.py index 741767e0..4680933c 100644 --- a/aiosmtplib/__init__.py +++ b/aiosmtplib/__init__.py @@ -33,7 +33,7 @@ __title__ = "aiosmtplib" -__version__ = "3.0.1dev0" +__version__ = "3.0.1" __author__ = "Cole Maclean" __license__ = "MIT" __copyright__ = "Copyright 2022 Cole Maclean" diff --git a/pyproject.toml b/pyproject.toml index 28ee95c6..5459d78c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "aiosmtplib" -version = "3.0.1dev0" +version = "3.0.1" description = "asyncio SMTP client" authors = ["Cole Maclean "] license = "MIT"