+++++++++++++++++++
Features:
- Official Python 3.7 support (:pr:`45`).
- Rename ``Api.definition`` as ``Api.schema``. Keep ``Api.definition`` as an
alias to ``Api.schema`` for backward compatibility (:pr:`53`).
Bug fixes:
- Fix passing route with path parameter default value (:pr:`58`).
Thanks :user:`zedrdave` for reporting.
- When no descrition is provided to ``Blueprint.response``, don't add an empty
string as description in the docs.
- Fix returning a ``tuple`` subclass from a view function. Only raw ``tuple``
instances are considered as Flask's (return value, status, headers).
``tuple`` subclasses are treated as ``list`` and can be paginated/dumped.
Raw ``tuple`` return values should be cast to another type (e.g. ``list``)
to be distinguished from (return value, status, headers) tuple. (:issue:`52`)
Thanks :user:`asyncee` for reporting.