Preparing release

This commit is contained in:
László Károlyi 2021-11-17 00:17:01 +01:00
parent 569d8f0db0
commit 1d669960fc
Signed by untrusted user: karolyi
GPG Key ID: 2DCAF25E55735BFE
4 changed files with 7 additions and 3 deletions

View File

@ -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`.

View File

@ -1,6 +1,6 @@
include AUTHORS
include LICENSE
include README.rst
include README.md
include CHANGELOG.txt
recursive-exclude tests *
recursive-exclude * __pycache__

View File

@ -1,2 +1,2 @@
[metadata]
description_file = README.rst
description_file = README.md

View File

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