Skip to content

Commit

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


0.10.3 (2016-06-13)
^^^^^^^^^^^^^^^^^^^

- Added ``public`` parameter to url validator (#26, pull request courtesy Iconceicao)


0.10.2 (2016-06-11)
^^^^^^^^^^^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion validators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
from .utils import ValidationFailure, validator # noqa
from .uuid import uuid # noqa

__version__ = '0.10.2'
__version__ = '0.10.3'
4 changes: 4 additions & 0 deletions validators/url.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ def url(value, public=False):
Added support for various exotic URLs and fixed various false
positives.
.. versionchanged:: 0.10.3
Added ``public`` parameter.
:param value: URL address string to validate
:param public: (default=False) Set True to only allow a public IP address
"""
Expand Down

0 comments on commit c6735b4

Please sign in to comment.