diff --git a/docs/release-notes.md b/docs/release-notes.md index e6c880a4..70dadab0 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -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 diff --git a/starlette/__init__.py b/starlette/__init__.py index 22049ab2..63af8876 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.6.2" +__version__ = "0.6.3"