diff --git a/docs/changelog.rst b/docs/changelog.rst index efccc69..e05500b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,14 @@ _ --------- + +1.1.0 +~~~~~ + +* Handle routes as ``URLSpec`` and >2-tuple in ``api_doc_gen`` +* Refactor ``api_doc_gen``; now has public function ``get_api_doc`` for use + + 1.0.0 ~~~~~ diff --git a/tornado_json/__init__.py b/tornado_json/__init__.py index 86b822d..7993759 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__ = '1.0.1' +__version__ = '1.1.0'