From 676e0ab8def3cbee6fc212ad66cd55c22a66df41 Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Mon, 12 Feb 2024 08:59:01 -0500 Subject: [PATCH] Version 2.1.1 --- CHANGELOG.md | 10 ++++++++++ email_validator/version.py | 2 +- release_to_pypi.sh | 3 ++- setup.cfg | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02d2277..7321afc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +2.1.1 (February 26, 2024) +------------------------- + +* Fixed typo 'marking' instead of 'marketing' in case-insensitive mailbox name list. +* When DNS-based deliverability checks fail, in some cases exceptions are now thrown with `raise ... from` for better nested exception tracking. +* Fixed tests to work when no local resolver can be configured. +* This project is now licensed under the Unlicense (instead of CC0). +* Minor improvements to tests. +* Minor improvements to code style. + 2.1.0 (October 22, 2023) ------------------------ diff --git a/email_validator/version.py b/email_validator/version.py index acc96f7..58039f5 100644 --- a/email_validator/version.py +++ b/email_validator/version.py @@ -1 +1 @@ -__version__ = "2.1.0.post1" +__version__ = "2.1.1" diff --git a/release_to_pypi.sh b/release_to_pypi.sh index efef293..466f4f8 100755 --- a/release_to_pypi.sh +++ b/release_to_pypi.sh @@ -1,4 +1,5 @@ -#!/bin/sh +#!/bin/bash +source env/bin/activate pip3 install --upgrade build twine rm -rf dist python3 -m build diff --git a/setup.cfg b/setup.cfg index 3958ce0..3387df1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -12,7 +12,7 @@ license_files = LICENSE classifiers = Development Status :: 5 - Production/Stable Intended Audience :: Developers - License :: Unlicense + License :: OSI Approved :: The Unlicense (Unlicense) Programming Language :: Python :: 3 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9