From 009182542efa72429ebe8bc9074bf11d947a9924 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20K=C3=A1rolyi?= Date: Mon, 15 Feb 2021 16:45:01 +0100 Subject: [PATCH] Release 0.2.16 --- CHANGELOG.txt | 3 +++ setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index bc017a0..e5e3cf3 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,6 @@ +0.2.16: +- Workaround for a bug in the built-in python 3.8 smtp library: https://github.com/karolyi/py3-validate-email/issues/50 + 0.2.15: - Added a `skip_smtp` option to optionally skip the SMTP protocol check after the DNS level checks, by @SergeyKons diff --git a/setup.py b/setup.py index 9515aae..36856be 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ class BuildPyCommand(build_py): setup( name='py3-validate-email', - version='0.2.15', + version='0.2.16', packages=find_packages(exclude=['tests']), install_requires=['dnspython~=2.0', 'idna~=2.10', 'filelock~=3.0'], author='László Károlyi',