Skip to content

Commit ae3771c

Browse files
committed
Bump version
1 parent 40cac07 commit ae3771c

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
---------
33

4+
0.14.3 (2020-02-04)
5+
^^^^^^^^^^^^^^^^^^^
6+
7+
- Handle None values gracefully in domain validator (#144, pull request courtesy reahaas)
8+
- Local part of the email address should be less or equal than 64 bytes (#147, pull request courtesy mondeja)
9+
410

511
0.14.2 (2020-01-24)
612
^^^^^^^^^^^^^^^^^^^

tests/test_email.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ def test_returns_true_on_valid_email(value, whitelist):
3434
('example@-invalid.com',),
3535
('example@inv-.alid-.com',),
3636
('example@inv-.-alid.com',),
37-
('john56789.john56789.john56789.john56789.john56789.john56789.john5@example.com',),
37+
(
38+
'john56789.john56789.john56789.john56789.john56789.john56789.john5'
39+
'@example.com',
40+
),
3841
# Quoted-string format (CR not allowed)
3942
('"\\\012"@here.com',),
4043
])

validators/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
'ipv4_cidr', 'ipv6', 'ipv6_cidr', 'length', 'mac_address', 'slug',
2020
'truthy', 'url', 'ValidationFailure', 'validator', 'uuid')
2121

22-
__version__ = '0.14.2'
22+
__version__ = '0.14.3'

0 commit comments

Comments
 (0)