summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2013-05-20 21:16:45 -0400
committerJulian Berman <Julian@GrayVines.com>2013-05-20 21:16:45 -0400
commit8b388e367d9ca92ca06eff7643ac83945579726d (patch)
tree4b4c27a225634e5b676eaddd5e6cfa2238e1dbad /README.rst
parenta0f5d13329f823db45800ae139e060c6ccc06d4a (diff)
downloadjsonschema-8b388e367d9ca92ca06eff7643ac83945579726d.tar.gz
Update README and CHANGELOG
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst17
1 files changed, 8 insertions, 9 deletions
diff --git a/README.rst b/README.rst
index 47e99ba..92c32a9 100644
--- a/README.rst
+++ b/README.rst
@@ -49,15 +49,14 @@ Features
Release Notes
-------------
-``v1.3.0`` adds better, more verbose tracebacks for validation errors that give
-some actual possibility of seeing what went wrong, particularly for the new
-``anyOf``, ``oneOf`` and ``allOf`` validators in draft 4.
-
-The other notable change is that ``ErrorTree``\s now raise exceptions for keys
-that aren't in the instance, to prevent typos.
-
-``__cause__`` is also implemented on Py3 for format errors, if that floats your
-boat.
+``v1.4.0`` adds a better interface for creating and extending validators in the
+form of ``jsonschema.validators.create`` and ``jsonschema.validators.extend``.
+The documentation is still a bit lacking in this area but it's getting there.
+See the tests in ``jsonschema.tests.test_validators`` and the source code if
+you'd like to try it out now.
+
+It also fixes a number of issues with ref resolution, one for array indices
+(#95) and one for improper handling of unknown URI schemes (#102).
Running the Test Suite