Skip to content

Commit 7b09eeb

Browse files
committed
Version 1.1.0
1 parent 7c196c5 commit 7b09eeb

File tree

2 files changed

+19
-14
lines changed

2 files changed

+19
-14
lines changed

README.md

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ email\_validator
44
A robust email address syntax and deliverability validation library for
55
Python 2.7/3.4+ by [Joshua Tauberer](https://razor.occams.info).
66

7-
This library validates that address are of the form `x@y.com`. This is
8-
the sort of validation you would want for a login form on a website.
7+
This library validates that a string is of the form `x@y.com`. This is
8+
the sort of validation you would want for an email-based login form on
9+
a website.
910

1011
Key features:
1112

@@ -25,8 +26,10 @@ And this library does NOT permit obsolete forms of email addresses, so
2526
if you need strict validation against the email specs exactly, use
2627
[pyIsEmail](https://github.com/michaelherold/pyIsEmail).
2728

28-
This library was first published in 2015. The current version is 1.0.5
29-
(posted October 18, 2019).
29+
This library was first published in 2015. The current version is 1.1.0
30+
(posted April 30, 2020). **In this version, the type of the value returned
31+
from `validate_email` has changed, but dict-style access to the validated
32+
address information still works, so it is backwards compatible.**
3033

3134
Installation
3235
------------
@@ -389,12 +392,14 @@ as universal in the file `setup.cfg` by the `universal = 1` key in the
389392
To release:
390393

391394
* Update the version number.
392-
* Follow the steps below to publish a universal wheel to pypi:
393-
394-
pip3 install twine
395-
rm -rf dist
396-
python3 setup.py sdist
397-
python3 setup.py bdist_wheel
398-
twine upload dist/*
399-
git tag v1.0.XXX # replace with version in setup.py
400-
git push --tags
395+
* Follow the steps below to publish source and a universal wheel to pypi:
396+
397+
```sh
398+
pip3 install twine
399+
rm -rf dist
400+
python3 setup.py sdist
401+
python3 setup.py bdist_wheel
402+
twine upload dist/*
403+
git tag v1.0.XXX # replace with version in setup.py
404+
git push --tags
405+
```

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='email_validator',
8-
version='1.0.5',
8+
version='1.1.0',
99

1010
description='A robust email syntax and deliverability validation library for Python 2.x/3.x.',
1111
long_description=open("README.md", encoding='utf-8').read(),

0 commit comments

Comments
 (0)