summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2013-10-18 13:46:36 -0400
committerJulian Berman <Julian@GrayVines.com>2013-10-18 13:46:36 -0400
commit6fee28cc42bbfc08d4c882d3cc65fef3b7bb1f79 (patch)
tree2a3e54a5954cc8fa4aedc9376e181c18bc204fcd
parentb6ede007ae7a6b57cf775776337d09261ddc3134 (diff)
downloadjsonschema-6fee28cc42bbfc08d4c882d3cc65fef3b7bb1f79.tar.gz
Release v2.2.0v2.2.0
-rw-r--r--CHANGELOG.rst6
-rw-r--r--README.rst6
-rw-r--r--jsonschema/__init__.py2
3 files changed, 9 insertions, 5 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index e4ecf0a..00f35f7 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,3 +1,9 @@
+v2.2.0
+------
+
+* Compile the host name regex (#127)
+* Allow arbitrary objects to be types (#129)
+
v2.1.0
------
diff --git a/README.rst b/README.rst
index 3ea4131..b4847f2 100644
--- a/README.rst
+++ b/README.rst
@@ -49,10 +49,8 @@ Features
Release Notes
-------------
-``v2.1.0`` fixes a wording issue for min / maxProperties, a path issue for
-additionalItems, and allows using `strict-rfc3339
-<https://pypi.python.org/pypi/strict-rfc3339/>`_ for date-time formats, instead
-of ISO 8601, since the former is what the spec defines them to be.
+``v2.2.0`` contains a minor speedup for the ``host-name`` format and a small
+change in draft 3's allowed types.
Running the Test Suite
diff --git a/jsonschema/__init__.py b/jsonschema/__init__.py
index 1c3c084..6232cec 100644
--- a/jsonschema/__init__.py
+++ b/jsonschema/__init__.py
@@ -20,7 +20,7 @@ from jsonschema.validators import (
)
-__version__ = "2.2.0-dev"
+__version__ = "2.2.0"
# flake8: noqa