From 6a77b7b27a65e77a3b8f6bf79d3a146ac042b811 Mon Sep 17 00:00:00 2001 From: Cole Maclean Date: Thu, 1 Sep 2022 21:07:14 -0700 Subject: [PATCH] v1.1.7 --- CHANGELOG.rst | 4 ++-- aiosmtplib/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 168505b3..c261cc88 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,8 @@ Changelog ========= -1.1.7 (unreleased) -------------------- +1.1.7 +----- - Security: Fix a possible injection vulnerability (a variant of https://consensys.net/diligence/vulnerabilities/python-smtplib-multiple-crlf-injection/) diff --git a/aiosmtplib/__init__.py b/aiosmtplib/__init__.py index 503bc065..256cd287 100644 --- a/aiosmtplib/__init__.py +++ b/aiosmtplib/__init__.py @@ -32,7 +32,7 @@ __title__ = "aiosmtplib" -__version__ = "1.1.7dev0" +__version__ = "1.1.7" __author__ = "Cole Maclean" __license__ = "MIT" __copyright__ = "Copyright 2022 Cole Maclean" diff --git a/pyproject.toml b/pyproject.toml index a777597c..28c7bc12 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "aiosmtplib" -version = "1.1.7dev0" +version = "1.1.7" description = "asyncio SMTP client" authors = ["Cole Maclean "] license = "MIT"