summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Berman <Julian+git@GrayVines.com>2012-06-05 19:27:26 -0400
committerJulian Berman <Julian+git@GrayVines.com>2012-06-05 19:27:38 -0400
commitdeb1648ac91f16d3388c8273777edac32908a586 (patch)
tree2993ab164e69c5f26c9bdba98be65987fe881faf
parent7de543262710dc23ff71e45f30541505dc7562b0 (diff)
downloadjsonschema-0.3.tar.gz
Release notes & version bump for v0.3v0.3
-rw-r--r--README.rst23
-rw-r--r--jsonschema.py2
2 files changed, 17 insertions, 8 deletions
diff --git a/README.rst b/README.rst
index 175c159..b56888e 100644
--- a/README.rst
+++ b/README.rst
@@ -3,7 +3,8 @@ jsonschema
==========
``jsonschema`` is an implementation of JSON Schema (currently in `Draft 3
-<http://tools.ietf.org/html/draft-zyp-json-schema-03>`_) for Python.
+<http://tools.ietf.org/html/draft-zyp-json-schema-03>`_) for Python (supporting
+2.6+ including Python 3).
::
@@ -57,9 +58,6 @@ Features
* Small and extensible
-Note: the API is still considered *unstable*, though no major changes are
-expected.
-
Schema Versioning
-----------------
@@ -75,12 +73,23 @@ version in the future when it is superceeded is undecided, so if you want to be
safe, *explicitly* declare which version to use when validating.
-Contributing and Contact Info
------------------------------
+Release Notes
+-------------
+
+* Default for unknown types and properties is now to *not* error (consistent
+ with the schema).
+* Python 3 support
+* Removed dependency on SecureTypes now that the hash bug has been resolved.
+* "Numerous bug fixes" -- most notably, a divisibleBy error for floats and a
+ bunch of missing typechecks for irrelevant properties.
+
+
+Contributing
+------------
I'm Julian Berman.
-``jsonschema`` is on `Github <http://github.com/Julian/jsonschema>`_.
+``jsonschema`` is on `GitHub <http://github.com/Julian/jsonschema>`_.
Get in touch, via GitHub or otherwise, if you've got something to contribute,
it'd be most welcome!
diff --git a/jsonschema.py b/jsonschema.py
index d12f804..b5d3d5f 100644
--- a/jsonschema.py
+++ b/jsonschema.py
@@ -57,7 +57,7 @@ def _uniq(container):
return True
-__version__ = "0.2"
+__version__ = "0.3"
DRAFT_3 = {