From 10ff92aa36dc740691b8aa67110621c2050fcefb Mon Sep 17 00:00:00 2001 From: Cole Maclean Date: Sun, 9 May 2021 11:05:31 -0700 Subject: [PATCH] release 1.1.6 --- CHANGELOG.rst | 6 ++++++ aiosmtplib/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 535210f7..657470cc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog ========= +1.1.6 +----- + +- Bugfix: fix authenticated test failures (credit @P-EB) + + 1.1.5 ----- diff --git a/aiosmtplib/__init__.py b/aiosmtplib/__init__.py index ed751ba2..2344c37e 100644 --- a/aiosmtplib/__init__.py +++ b/aiosmtplib/__init__.py @@ -32,7 +32,7 @@ __title__ = "aiosmtplib" -__version__ = "1.1.5" +__version__ = "1.1.6" __author__ = "Cole Maclean" __license__ = "MIT" __copyright__ = "Copyright 2021 Cole Maclean" diff --git a/pyproject.toml b/pyproject.toml index 280bf8e1..3b921816 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "aiosmtplib" -version = "1.1.5" +version = "1.1.6" description = "asyncio SMTP client" authors = ["Cole Maclean "] license = "MIT"