Skip to content

Commit

Permalink
Prepare for release of v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Jan 29, 2014
1 parent 8f5a2eb commit 61db1ff
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -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.


2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down
2 changes: 1 addition & 1 deletion validator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""

__version__ = "0.5.0"
__version__ = "0.6.0"

import re
from collections import defaultdict
Expand Down

0 comments on commit 61db1ff

Please sign in to comment.