From 94f43c0d99f532195b22f0c47ebe69237e5ba215 Mon Sep 17 00:00:00 2001 From: Cole Maclean Date: Sat, 7 Jan 2023 10:54:51 -0800 Subject: [PATCH] v2.0.1 --- CHANGELOG.rst | 7 +++++++ aiosmtplib/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 16ede642..0b578367 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog ========= +2.0.1 +----- + +- Bugfix: "tests" and "docs" in the sdist should be includes, not packages, + so that they do not get put in ``site-packages``. + + 2.0.0 ----- diff --git a/aiosmtplib/__init__.py b/aiosmtplib/__init__.py index 4598366f..1a6ceb03 100644 --- a/aiosmtplib/__init__.py +++ b/aiosmtplib/__init__.py @@ -32,7 +32,7 @@ __title__ = "aiosmtplib" -__version__ = "2.0.0" +__version__ = "2.0.1" __author__ = "Cole Maclean" __license__ = "MIT" __copyright__ = "Copyright 2022 Cole Maclean" diff --git a/pyproject.toml b/pyproject.toml index 6fef37f4..d80bdf1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "aiosmtplib" -version = "2.0.0" +version = "2.0.1" description = "asyncio SMTP client" authors = ["Cole Maclean "] license = "MIT"