diff --git a/docs/changelog.rst b/docs/changelog.rst index 19f0338..67a08da 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,15 @@ _ --------- +v0.30 - URL Annotations +~~~~~~~~~~~~~~~~~~~~~~~ + +* Added ``__urls__`` and ``__url_names__`` attributes to allow flexible creation of custom URLs that make creating REST APIs etc. easy +* Added a REST API demo as an example for URL annotations +* Added URL annotations documentation +* Refactored and improved route generation in ``routes`` + + v0.20 - Refactor of ``utils`` module ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/tornado_json/__init__.py b/tornado_json/__init__.py index c9152ac..f3b7f24 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.20' +__version__ = '0.30'