diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 74ba7714..8ce7a5d7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,8 @@ Changelog ========= -1.1.1 (unreleased) ------------------- +1.1.1 +----- - Bugfix: Fix handling of sending legacy email API (Message) objects. diff --git a/pyproject.toml b/pyproject.toml index 928dbfd8..6b66c66c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "aiosmtplib" -version = "1.1.1a0" +version = "1.1.1" description = "asyncio SMTP client" authors = ["Cole Maclean "] license = "MIT" diff --git a/src/aiosmtplib/__init__.py b/src/aiosmtplib/__init__.py index 769bebc2..c199d906 100644 --- a/src/aiosmtplib/__init__.py +++ b/src/aiosmtplib/__init__.py @@ -32,7 +32,7 @@ __title__ = "aiosmtplib" -__version__ = "1.1.1a0" +__version__ = "1.1.1" __author__ = "Cole Maclean" __license__ = "MIT" __copyright__ = "Copyright 2019 Cole Maclean"