From 8b323bf6edd04e820010d296af18ca3286fd3b85 Mon Sep 17 00:00:00 2001 From: Cole Maclean Date: Sun, 21 Apr 2019 19:55:36 -0700 Subject: [PATCH] Increment version & update changelog --- CHANGELOG.rst | 6 ++++++ src/aiosmtplib/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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"