Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kvesteri committed Apr 2, 2020
1 parent 40cac07 commit ae3771c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
---------

0.14.3 (2020-02-04)
^^^^^^^^^^^^^^^^^^^

- Handle None values gracefully in domain validator (#144, pull request courtesy reahaas)
- Local part of the email address should be less or equal than 64 bytes (#147, pull request courtesy mondeja)


0.14.2 (2020-01-24)
^^^^^^^^^^^^^^^^^^^
Expand Down
5 changes: 4 additions & 1 deletion tests/test_email.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ def test_returns_true_on_valid_email(value, whitelist):
('[email protected]',),
('[email protected]',),
('[email protected]',),
('john56789.john56789.john56789.john56789.john56789.john56789.john5@example.com',),
(
'john56789.john56789.john56789.john56789.john56789.john56789.john5'
'@example.com',
),
# Quoted-string format (CR not allowed)
('"\\\012"@here.com',),
])
Expand Down
2 changes: 1 addition & 1 deletion validators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
'ipv4_cidr', 'ipv6', 'ipv6_cidr', 'length', 'mac_address', 'slug',
'truthy', 'url', 'ValidationFailure', 'validator', 'uuid')

__version__ = '0.14.2'
__version__ = '0.14.3'

0 comments on commit ae3771c

Please sign in to comment.