Skip to content

Commit 36b0611

Browse files
committed
2.1.0
1 parent c1f37d6 commit 36b0611

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
In Development
2-
--------------
1+
2.1.0 (October 22, 2023)
2+
------------------------
33

44
* Python 3.8+ is now required (support for Python 3.7 was dropped).
55
* The old `email` field on the returned `ValidatedEmail` object, which in the previous version was superseded by `normalized`, will now raise a deprecation warning if used. See https://stackoverflow.com/q/879173 for strategies to suppress the DeprecationWarning.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ To release:
451451
* Publish a source and wheel distribution to pypi (see command below).
452452

453453
```sh
454-
git tag v$(grep version setup.cfg | sed "s/.*= //")
454+
git tag v$(cat email_validator/version.py | sed "s/.* = //" | sed 's/"//g')
455455
git push --tags
456456
./release_to_pypi.sh
457457
```

email_validator/version.py

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

0 commit comments

Comments
 (0)