Skip to content

Commit

Permalink
Version 0.0.13 release (#32)
Browse files Browse the repository at this point in the history
* Update README with percentages, contributors

* Version 0.0.13 release
  • Loading branch information
di committed Nov 10, 2016
1 parent 83dac56 commit 3ff45b9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ we would get the following error:

Validating YourFirstFailingValidator(source=LocalFile('potential_vampires.csv'))
Failed :(
SetValidator failed 1 time(s) on field: 'Column B'
SetValidator failed 1 time(s) (25.0%) on field: 'Column B'
Invalid fields: ['Maybe A Vampire']

And we would know that we'd either need to sanitize this field, or add
Expand Down Expand Up @@ -177,11 +177,11 @@ When we run *this* with ``vladiate``, we get:

Validating YourSecondEmptyValidator(source=LocalFile('real_vampires.csv'))
Failed :(
EmptyValidator failed 4 time(s) on field: 'Column A'
EmptyValidator failed 4 time(s) (100.0%) on field: 'Column A'
Invalid fields: ['Dracula', 'Vlad the Impaler', 'Count Chocula', 'Ronald Reagan']
EmptyValidator failed 4 time(s) on field: 'Column B'
EmptyValidator failed 4 time(s) (100.0%) on field: 'Column B'
Invalid fields: ['Maybe A Vampire', 'Not A Vampire', 'Vampire']
EmptyValidator failed 4 time(s) on field: 'Column C'
EmptyValidator failed 4 time(s) (100.0%) on field: 'Column C'
Invalid fields: ['Real', 'Not Real']

This is because Vladiate interprets an empty list of validators for a
Expand Down Expand Up @@ -358,6 +358,7 @@ Authors
- `Dustin Ingram <https://github.com/di>`__
- `Clara Bennett <https://github.com/csojinb>`__
- `Aditya Natraj <https://github.com/adityanatra>`__
- `Sterling Petersen <https://github.com/sterlingpetersen>`__
License
-------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand

version = '0.0.11'
version = '0.0.13'


class PyTest(TestCommand):
Expand Down

0 comments on commit 3ff45b9

Please sign in to comment.