diff --git a/CHANGES b/CHANGES index 0112898..3115a9a 100644 --- a/CHANGES +++ b/CHANGES @@ -7,4 +7,6 @@ v0.3.1, 1/21/2014 -- Renamed Classy to InstanceOf, added SubclassOf v0.4.0, 1/23/2014 -- Added the conditional If(Then()) validator v0.4.1, 1/24/2014 -- Clarified the error message produced by Equals v0.5.0, 1/28/2014 -- Introduced @rossdylan's ArgSpec validator +v0.6.0, 1/28/2014 -- Implemented nested validations, also removed the list of negated error messages out of the Not validator. All validators are now responsible for having their own .not_message attribute which should contain a negated version of their normal error message. Those that don't will have a generic error message substituted in for them. + diff --git a/setup.py b/setup.py index f8461fd..82fc457 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='validator.py', - version='0.5.0', + version='0.6.0', author='Samuel "mansam" Lucidi', author_email="mansam@csh.rit.edu", packages=['validator'], diff --git a/validator/__init__.py b/validator/__init__.py index 2cf37d4..e0dfd96 100644 --- a/validator/__init__.py +++ b/validator/__init__.py @@ -8,7 +8,7 @@ """ -__version__ = "0.5.0" +__version__ = "0.6.0" import re from collections import defaultdict