Skip to content

Commit

Permalink
Version 0.14.0 (#1087)
Browse files Browse the repository at this point in the history
* Version 0.14.0 release preparation: write release-notes and version bump.
  • Loading branch information
erewok committed Nov 8, 2020
1 parent fe961dd commit 8bfc2a3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions docs/release-notes.md
@@ -1,3 +1,20 @@
## 0.14.0

November 8th, 2020

### Added

* Starlette now officially supports Python3.9.
* In `StreamingResponse`, allow custom async iterator such as objects from classes implementing `__aiter__`.
* Allow usage of `functools.partial` async handlers in Python versions 3.6 and 3.7.
* Add 418 I'm A Teapot status code.

### Changed

* Create tasks from handler coroutines before sending them to `asyncio.wait`.
* Use `format_exception` instead of `format_tb` in `ServerErrorMiddleware`'s `debug` responses.
* Be more lenient with handler arguments when using the `requires` decorator.

## 0.13.8

* Revert `Queue(maxsize=1)` fix for `BaseHTTPMiddleware` middleware classes and streaming responses.
Expand Down
2 changes: 1 addition & 1 deletion starlette/__init__.py
@@ -1 +1 @@
__version__ = "0.13.8"
__version__ = "0.14.0"

0 comments on commit 8bfc2a3

Please sign in to comment.