Skip to content

Commit 2bd672f

Browse files
committed
Release version 1.2.0
1 parent 8f4cf00 commit 2bd672f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ email-validator: Validate Email Addresses
22
=========================================
33

44
A robust email address syntax and deliverability validation library for
5-
Python 2.7/3.4+ by [Joshua Tauberer](https://joshdata.me).
5+
Python 3.5+ by [Joshua Tauberer](https://joshdata.me).
66

77
This library validates that a string is of the form `name@example.com`. This is
88
the sort of validation you would want for an email-based login form on
@@ -228,6 +228,7 @@ change the user's login information without telling them.)
228228

229229
### UCS-4 support required for Python 2.7
230230

231+
This library hopefully still works with Python 2.7.
231232
Note that when using Python 2.7, it is required that it was built with
232233
UCS-4 support (see
233234
[here](https://stackoverflow.com/questions/29109944/python-returns-length-of-2-for-single-unicode-character-string));
@@ -404,7 +405,7 @@ rm -rf dist
404405
python3 setup.py sdist
405406
python3 setup.py bdist_wheel
406407
twine upload dist/*
407-
git tag v1.0.XXX # replace with version in setup.py
408+
git tag v1.0.XXX # replace with version in setup.cfg
408409
git push --tags
409410
```
410411

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = email_validator
3-
version = 1.1.3
4-
description = A robust email syntax and deliverability validation library for Python 2.x/3.x.
3+
version = 1.2.0
4+
description = A robust email syntax and deliverability validation library.
55
long_description = file: README.md
66
long_description_content_type = text/markdown
77
url = https://github.com/JoshData/python-email-validator

0 commit comments

Comments
 (0)