Skip to content

Commit

Permalink
Merge pull request #67 from insightindustry/develop
Browse files Browse the repository at this point in the history
PR for v.1.5.0
  • Loading branch information
insightindustry authored Oct 12, 2020
2 parents af43df3 + e75b19e commit 281c853
Show file tree
Hide file tree
Showing 15 changed files with 1,651 additions and 42 deletions.
10 changes: 10 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
-----------

Release 1.5.0 (released October 12, 2020)
============================================

* #64: Fixed URL validator and checker to ensure that protocol is case insensitive.
* #63: Added a MIME type validator and checker.
* ENHANCEMENT: Added ``missing_as_none`` option to ``checkers.are_dicts_equivalent()``.
* ENHANCEMENT: Added ``strict_typing`` option to ``checkers.are_equivalent()``.

-----------

Release 1.4.2 (released June 20, 2020)
============================================

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

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

.. image:: https://codecov.io/gh/insightindustry/validator-collection/branch/v.1.5.0/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.5.0
:target: http://validator-collection.readthedocs.io/en/latest/?badge=v.1.5.0
:alt: Documentation Status (ReadTheDocs)

* - `v. 1.4 <https://github.com/insightindustry/validator-collection/tree/v.1.4.2>`_
-
.. image:: https://travis-ci.org/insightindustry/validator-collection.svg?branch=v.1.4.2
Expand Down Expand Up @@ -215,7 +229,7 @@ Validators
-
-
- ``writeable``
-
- ``mimetype``
* -
-
-
Expand Down Expand Up @@ -275,7 +289,7 @@ Checkers
-
-
- ``is_writeable``
-
- ``is_mimetype``
* - ``is_iterable``
-
-
Expand Down
2 changes: 1 addition & 1 deletion docs/_checker_list.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
-
-
- :func:`is_writeable <validator_collection.checkers.is_writeable>`
-
- :func:`is_mimetype <validator_collection.checkers.is_mimetype>`
* - :func:`is_iterable <validator_collection.checkers.is_iterable>`
-
-
Expand Down
14 changes: 14 additions & 0 deletions docs/_unit_tests_code_coverage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,20 @@
:target: http://validator-collection.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status (ReadTheDocs)

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

.. image:: https://codecov.io/gh/insightindustry/validator-collection/branch/v.1.5.0/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.5.0
:target: http://validator-collection.readthedocs.io/en/latest/?badge=v.1.5.0
:alt: Documentation Status (ReadTheDocs)

* - `v. 1.4 <https://github.com/insightindustry/validator-collection/tree/v.1.4.2>`_
-
.. image:: https://travis-ci.org/insightindustry/validator-collection.svg?branch=v.1.4.2
Expand Down
2 changes: 1 addition & 1 deletion docs/_validator_list.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
-
-
- :func:`writeable <validator_collection.validators.writeable>`
-
- :func:`mimetype <validator_collection.validators.mimetype>`
* -
-
-
Expand Down
5 changes: 5 additions & 0 deletions docs/checkers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -235,3 +235,8 @@ is_mac_address
-------------------

.. autofunction:: is_mac_address

is_mimetype
-------------------

.. autofunction:: is_mimetype
5 changes: 5 additions & 0 deletions docs/errors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -369,3 +369,8 @@ InvalidMACAddressError (from :class:`ValueError <python:ValueError>`)
-----------------------------------------------------------------------

.. autoclass:: InvalidMACAddressError

InvalidMimeTypeError (from :class:`ValueError <python:ValueError>`)
-----------------------------------------------------------------------

.. autoclass:: InvalidMimeTypeError
5 changes: 5 additions & 0 deletions docs/validators.rst
Original file line number Diff line number Diff line change
Expand Up @@ -222,3 +222,8 @@ mac_address
--------------

.. autofunction:: mac_address

mimetype
--------------

.. autofunction:: mimetype
Loading

0 comments on commit 281c853

Please sign in to comment.