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"