summaryrefslogtreecommitdiff
path: root/jsonschema/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'jsonschema/__init__.py')
-rw-r--r--jsonschema/__init__.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/jsonschema/__init__.py b/jsonschema/__init__.py
index 4514d8f..fa94bfa 100644
--- a/jsonschema/__init__.py
+++ b/jsonschema/__init__.py
@@ -10,18 +10,17 @@ instance under a schema, and will create a validator for you.
"""
from jsonschema.exceptions import (
- FormatError, RefResolutionError, SchemaError, UnknownType, ValidationError
+ FormatError, RefResolutionError, SchemaError, ValidationError
)
from jsonschema._format import (
FormatChecker, draft3_format_checker, draft4_format_checker,
)
from jsonschema.validators import (
- ErrorTree, Draft3Validator, Draft4Validator, RefResolver, ValidatorMixin,
- validate, validates,
+ ErrorTree, Draft3Validator, Draft4Validator, RefResolver, validate
)
-__version__ = "1.5.0-dev"
+__version__ = "2.0.0"
# flake8: noqa