Skip to content

Commit 61db1ff

Browse files
author
=
committed
Prepare for release of v0.6.0
1 parent 8f5a2eb commit 61db1ff

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ v0.3.1, 1/21/2014 -- Renamed Classy to InstanceOf, added SubclassOf
77
v0.4.0, 1/23/2014 -- Added the conditional If(Then()) validator
88
v0.4.1, 1/24/2014 -- Clarified the error message produced by Equals
99
v0.5.0, 1/28/2014 -- Introduced @rossdylan's ArgSpec validator
10+
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.
11+
1012

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='validator.py',
5-
version='0.5.0',
5+
version='0.6.0',
66
author='Samuel "mansam" Lucidi',
77
author_email="[email protected]",
88
packages=['validator'],

validator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
"""
1010

11-
__version__ = "0.5.0"
11+
__version__ = "0.6.0"
1212

1313
import re
1414
from collections import defaultdict

0 commit comments

Comments
 (0)