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',