Release v1.1.0

This commit is contained in:
Julian Berman
2013-03-03 18:17:23 -05:00
parent d74171fdbf
commit abd0b2dd1c
3 changed files with 11 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
v1.1.0
------
* Canonicalize URIs (#70)
* Allow attaching exceptions to ``format`` errors (#77)
v1.0.0
------

View File

@@ -70,6 +70,10 @@ who wish to create their own from scratch.
As always, see `the documentation <http://python-jsonschema.readthedocs.org>`_
for details.
``v1.1.0`` fixes a bug whereby URIs were not canonicalized when stored and
looked up (#70) and also allows for registering exceptions that can be accessed
from ``ValidationError``\s when validating ``format`` properties (#77).
Running the Test Suite
----------------------

View File

@@ -32,7 +32,7 @@ try:
except ImportError:
requests = None
__version__ = "1.0.0"
__version__ = "1.1.0"
PY3 = sys.version_info[0] >= 3