From: Sebastián Ramírez Date: Sat, 20 Apr 2019 18:12:55 +0000 (+0400) Subject: :bookmark: 0.17.0 X-Git-Tag: 0.17.0~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aa7b4bd1016d46de2015d6d0b9ed90025019a2d2;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: 0.17.0 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 681edf35ea..4f6ce461a2 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,9 @@ ## Next release +## 0.17.0 + +* Make Flit publish from CI. PR #170. + * Add documentation about handling CORS (Cross-Origin Resource Sharing). PR #169. * By default, encode by alias. This allows using Pydantic `alias` parameters working by default. PR #168. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index fdf1193829..e72650d929 100644 --- a/fastapi/__init__.py +++ b/fastapi/__init__.py @@ -1,6 +1,6 @@ """FastAPI framework, high performance, easy to learn, fast to code, ready for production""" -__version__ = "0.16.0" +__version__ = "0.17.0" from starlette.background import BackgroundTasks