Version 0.9.11

This commit is contained in:
Tom Christie 2019-01-23 09:04:33 +00:00
parent c1b312ff73
commit f923c739e8
3 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,11 @@
## 0.9.11
* Session cookies now include browser 'expires', in addition to the existing signed expiry.
* `request.form()` now returns a multi-dict interface.
* The query parameter multi-dict implementation now mirrors `dict` more correctly for the
behavior of `.keys()`, `.values()`, and `.items()` when multiple same-key items occur.
* Use `urlsplit` throughout in favor of `urlparse`.
## 0.9.10
* Support `@requires(...)` on class methods.

View File

@ -51,7 +51,7 @@ For example: `request.headers['content-type']`
#### Query Parameters
Headers are exposed as an immutable multi-dict.
Query parameters are exposed as an immutable multi-dict.
For example: `request.query_params['search']`

View File

@ -1 +1 @@
__version__ = "0.9.10"
__version__ = "0.9.11"