From 39c8c27aa65fa28e9c97e6b6ffd4a7fb75c8bd63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20K=C3=A1rolyi?= Date: Fri, 3 May 2019 18:52:35 +0200 Subject: [PATCH] Bumping version, unpinning requirements --- CHANGELOG.txt | 3 +++ setup.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index a15cc28..7999dc4 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,6 @@ +0.1.8: +- Added IDNA domain handling. + 0.1.7: - Handle the SMTPServerDisconnected exception throughout all the SMTP connection. Try to contact all MXes for a successful probe. diff --git a/setup.py b/setup.py index f11a19e..02b9e9c 100644 --- a/setup.py +++ b/setup.py @@ -26,9 +26,9 @@ class PostBuildPyCommand(build_py): setup( name='py3-validate-email', - version='0.1.7', + version='0.1.8', packages=find_packages(exclude=['tests']), - install_requires=['dnspython==1.16.0', 'idna==2.8'], + install_requires=['dnspython>=1.16.0', 'idna>=2.8'], author='László Károlyi', author_email='laszlo@karolyi.hu', description='Email validator with regex and SMTP checking.',