diff --git a/docs/changelog.rst b/docs/changelog.rst index e05500b..a7fdb80 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,12 @@ _ --------- +1.2.0 +~~~~~ + +* Implement ``tornado_json.gen.coroutine`` + * As a fix for `#59 `_, a custom wrapper for the ``tornado.gen.coroutine`` wrapper has been implemented. This was necessary as we lose the original argspec through it because the wrapper simply has ``(*args, **kwargs)`` as its signature. Here, we annotate the original argspec as an attribute to the wrapper so it can be referenced later by Tornado-JSON when generating routes. + 1.1.0 ~~~~~ diff --git a/tornado_json/__init__.py b/tornado_json/__init__.py index 7993759..7a0a84f 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.1.0' +__version__ = '1.2.0'