Version 0.6.3

This commit is contained in:
Tom Christie 2018-10-30 16:11:19 +00:00
parent 96c51c959a
commit 692ee89e10
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,11 @@
## 0.6.3
* Support routing to methods.
* Ensure url_path_for works with Mount('/{some_path_params}').
* Fix Router(default=) argument.
* Support repeated paths, like: @app.route("/", methods=["GET"]), @app.route("/", methods=["POST"])
* Use the default ThreadPoolExecutor for all sync endpoints.
## 0.6.2
### SessionMiddleware

View File

@ -1 +1 @@
__version__ = "0.6.2"
__version__ = "0.6.3"