diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 875b71c5..2a52bc5f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ aiosmtplib changes ================== +1.0.5 +----- + +- Bugfix: Connection is now closed if an error response is recieved + immediately after connecting. + 1.0.4 ----- diff --git a/src/aiosmtplib/__init__.py b/src/aiosmtplib/__init__.py index 241d1204..8c5af58a 100644 --- a/src/aiosmtplib/__init__.py +++ b/src/aiosmtplib/__init__.py @@ -16,7 +16,7 @@ __title__ = "aiosmtplib" -__version__ = "1.0.4" +__version__ = "1.0.5" __author__ = "Cole Maclean" __license__ = "MIT" __copyright__ = "Copyright 2019 Cole Maclean"