From c6722e12b7240013af0848a79e5ebe47aedf823a Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Sat, 21 Jan 2023 05:42:06 -0500 Subject: [PATCH] Version 1.3.1 --- CHANGELOG.md | 6 +++--- README.md | 5 +++-- setup.cfg | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f1a0d0..91738d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ -In Development --------------- +Version 1.3.1 (January 21, 2023) +-------------------------------- -* The new SPF reject-all record check is now limited to domains that do not have MX records but do have an A/AAAA record fallback. +* The new SPF 'v=spf1 -all' (reject-all) deliverability check is removed in most cases. It now is performed only for domains that do not have MX records but do have an A/AAAA fallback record. Version 1.3.0 (September 18, 2022) ---------------------------------- diff --git a/README.md b/README.md index 84c4120..241a809 100644 --- a/README.md +++ b/README.md @@ -426,9 +426,10 @@ To release: * Update CHANGELOG.md. * Update the version number in setup.cfg. -* Make a commit with the new version number. -* Follow the steps below to publish source and a universal wheel to pypi and tag the release. +* Make & push a commit with the new version number. +* Make & push a tag (`git tag v... && git push --tags`). * Make a release at https://github.com/JoshData/python-email-validator/releases/new. +* Follow the steps below to publish source and a universal wheel to pypi. ```sh ./release_to_pypi.sh diff --git a/setup.cfg b/setup.cfg index c4d6f41..6a92d0a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = email_validator -version = 1.3.0 +version = 1.3.1 description = A robust email address syntax and deliverability validation library. long_description = file: README.md long_description_content_type = text/markdown