diff --git a/docs/changelog.rst b/docs/changelog.rst index 4b868a5..19f0338 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,16 @@ Changelog _ --------- + +v0.20 - Refactor of ``utils`` module +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Functions that did not belong in ``utils`` were moved to more relevant modules. This change changes the interface for Tornado-JSON in quite a big way. The following changes were made (that are not backwards compatible). + +* ``api_assert`` and ``APIError`` were moved to ``tornado_json.exceptions`` +* ``io_schema`` was renamed ``validate`` and moved to ``tornado_json.schema`` + + v0.14 - Bugfixes thanks to 100% coverage ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/tornado_json/__init__.py b/tornado_json/__init__.py index cdaba45..c9152ac 100644 --- a/tornado_json/__init__.py +++ b/tornado_json/__init__.py @@ -5,4 +5,4 @@ # Alternatively, just put the version in a text file or something to avoid # this. -__version__ = '0.14' +__version__ = '0.20'