Skip to content

Commit

Permalink
Version 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshData committed Feb 26, 2024
1 parent 19c4d34 commit 676e0ab
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
------------------------

Expand Down
2 changes: 1 addition & 1 deletion email_validator/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.1.0.post1"
__version__ = "2.1.1"
3 changes: 2 additions & 1 deletion release_to_pypi.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/sh
#!/bin/bash
source env/bin/activate
pip3 install --upgrade build twine
rm -rf dist
python3 -m build
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 676e0ab

Please sign in to comment.