summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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