Skip to content

Commit 676e0ab

Browse files
committed
Version 2.1.1
1 parent 19c4d34 commit 676e0ab

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2.1.1 (February 26, 2024)
2+
-------------------------
3+
4+
* Fixed typo 'marking' instead of 'marketing' in case-insensitive mailbox name list.
5+
* When DNS-based deliverability checks fail, in some cases exceptions are now thrown with `raise ... from` for better nested exception tracking.
6+
* Fixed tests to work when no local resolver can be configured.
7+
* This project is now licensed under the Unlicense (instead of CC0).
8+
* Minor improvements to tests.
9+
* Minor improvements to code style.
10+
111
2.1.0 (October 22, 2023)
212
------------------------
313

email_validator/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.1.0.post1"
1+
__version__ = "2.1.1"

release_to_pypi.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#!/bin/sh
1+
#!/bin/bash
2+
source env/bin/activate
23
pip3 install --upgrade build twine
34
rm -rf dist
45
python3 -m build

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license_files = LICENSE
1212
classifiers =
1313
Development Status :: 5 - Production/Stable
1414
Intended Audience :: Developers
15-
License :: Unlicense
15+
License :: OSI Approved :: The Unlicense (Unlicense)
1616
Programming Language :: Python :: 3
1717
Programming Language :: Python :: 3.8
1818
Programming Language :: Python :: 3.9

0 commit comments

Comments
 (0)