From 1d669960fc4f3c47dc2066113be4a70c3d10bef9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20K=C3=A1rolyi?= Date: Wed, 17 Nov 2021 00:17:01 +0100 Subject: [PATCH] Preparing release --- CHANGELOG.txt | 4 ++++ MANIFEST.in | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c3558ee..fde4354 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,7 @@ +1.0.3: +- Moving project off github +- Static type check fixes + 1.0.2: - Handle an SSLError during STARTTLS correctly (See https://gitea.ksol.io/karolyi/py3-validate-email/issues/79) - Extend options with an `smtp_skip_tls` option. When `True`, the module won't initiate a TLS session. Defaults to `False`. diff --git a/MANIFEST.in b/MANIFEST.in index e6c5277..3f62ef3 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,6 @@ include AUTHORS include LICENSE -include README.rst +include README.md include CHANGELOG.txt recursive-exclude tests * recursive-exclude * __pycache__ diff --git a/setup.cfg b/setup.cfg index ddb7da9..08aedd7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -description_file = README.rst +description_file = README.md diff --git a/setup.py b/setup.py index 0284efb..e8ac02d 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ class BuildPyCommand(build_py): setup( name='py3-validate-email', - version='1.0.2', + version='1.0.3', packages=find_packages(exclude=['tests']), install_requires=['dnspython~=2.1', 'idna~=3.0', 'filelock~=3.0'], author='László Károlyi',