From abd0b2dd1cce8e072a69c84162937e35162ce86b Mon Sep 17 00:00:00 2001 From: Julian Berman Date: Sun, 3 Mar 2013 18:17:23 -0500 Subject: [PATCH] Release v1.1.0 --- CHANGELOG.rst | 6 ++++++ README.rst | 4 ++++ jsonschema.py | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 962e7d5..e820b71 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,9 @@ +v1.1.0 +------ + +* Canonicalize URIs (#70) +* Allow attaching exceptions to ``format`` errors (#77) + v1.0.0 ------ diff --git a/README.rst b/README.rst index a73c548..c8273ab 100644 --- a/README.rst +++ b/README.rst @@ -70,6 +70,10 @@ who wish to create their own from scratch. As always, see `the documentation `_ 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 ---------------------- diff --git a/jsonschema.py b/jsonschema.py index 2b74ead..737d3f8 100644 --- a/jsonschema.py +++ b/jsonschema.py @@ -32,7 +32,7 @@ try: except ImportError: requests = None -__version__ = "1.0.0" +__version__ = "1.1.0" PY3 = sys.version_info[0] >= 3