Skip to content

Commit

Permalink
Merge pull request #33 from insightindustry/develop
Browse files Browse the repository at this point in the history
Closes #32. Removed print statement artifact.
  • Loading branch information
insightindustry authored Apr 4, 2019
2 parents f552d37 + 79f1d8b commit 8c8047a
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
-----------

Release 1.3.4 (released April 3, 2019)
============================================

* #32: Removed a `print` statement left over from debugging.

-----------

Release 1.3.3 (released March 23, 2019)
============================================

Expand Down
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ Validator Collection
:target: http://validator-collection.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status (ReadTheDocs)

* - `v. 1.3 <https://github.com/insightindustry/validator-collection/tree/v.1.3.3>`_
* - `v. 1.3 <https://github.com/insightindustry/validator-collection/tree/v.1.3.4>`_
-
.. image:: https://travis-ci.org/insightindustry/validator-collection.svg?branch=v.1.3.3
.. image:: https://travis-ci.org/insightindustry/validator-collection.svg?branch=v.1.3.4
:target: https://travis-ci.org/insightindustry/validator-collection
:alt: Build Status (Travis CI)

.. image:: https://codecov.io/gh/insightindustry/validator-collection/branch/v.1.3.3/graph/badge.svg
.. image:: https://codecov.io/gh/insightindustry/validator-collection/branch/v.1.3.4/graph/badge.svg
:target: https://codecov.io/gh/insightindustry/validator-collection
:alt: Code Coverage Status (Codecov)

.. image:: https://readthedocs.org/projects/validator-collection/badge/?version=v.1.3.3
:target: http://validator-collection.readthedocs.io/en/latest/?badge=v.1.3.3
.. image:: https://readthedocs.org/projects/validator-collection/badge/?version=v.1.3.4
:target: http://validator-collection.readthedocs.io/en/latest/?badge=v.1.3.4
:alt: Documentation Status (ReadTheDocs)

* - `v. 1.2 <https://github.com/insightindustry/validator-collection/tree/v.1.2.0>`_
Expand Down
10 changes: 5 additions & 5 deletions docs/_unit_tests_code_coverage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@
:target: http://validator-collection.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status (ReadTheDocs)

* - `v. 1.3 <https://github.com/insightindustry/validator-collection/tree/v.1.3.3>`_
* - `v. 1.3 <https://github.com/insightindustry/validator-collection/tree/v.1.3.4>`_
-
.. image:: https://travis-ci.org/insightindustry/validator-collection.svg?branch=v.1.3.3
.. image:: https://travis-ci.org/insightindustry/validator-collection.svg?branch=v.1.3.4
:target: https://travis-ci.org/insightindustry/validator-collection
:alt: Build Status (Travis CI)

.. image:: https://codecov.io/gh/insightindustry/validator-collection/branch/v.1.3.3/graph/badge.svg
.. image:: https://codecov.io/gh/insightindustry/validator-collection/branch/v.1.3.4/graph/badge.svg
:target: https://codecov.io/gh/insightindustry/validator-collection
:alt: Code Coverage Status (Codecov)

.. image:: https://readthedocs.org/projects/validator-collection/badge/?version=v.1.3.3
:target: http://validator-collection.readthedocs.io/en/latest/?badge=v.1.3.3
.. image:: https://readthedocs.org/projects/validator-collection/badge/?version=v.1.3.4
:target: http://validator-collection.readthedocs.io/en/latest/?badge=v.1.3.4
:alt: Documentation Status (ReadTheDocs)

* - `v. 1.2 <https://github.com/insightindustry/validator-collection/tree/v.1.2.0>`_
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ description =
basepython = python
changedir = docs
deps =
sphinx
sphinx >= 1.8.2, < 2.0.0
sphinx_rtd_theme
sphinx_tabs
commands =
Expand Down
2 changes: 1 addition & 1 deletion validator_collection/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '1.3.3'
__version__ = '1.3.4'
1 change: 0 additions & 1 deletion validator_collection/validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -2288,7 +2288,6 @@ def url(value,
pass

if not is_valid and allow_special_ips:
print('not valid and allowing special ips')
try:
ip_address(stripped_value, allow_empty = False)
is_valid = True
Expand Down

0 comments on commit 8c8047a

Please sign in to comment.