From aa7b4bd1016d46de2015d6d0b9ed90025019a2d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 20 Apr 2019 22:12:55 +0400 Subject: [PATCH] :bookmark: 0.17.0 --- docs/release-notes.md | 4 ++++ fastapi/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 681edf35e..4f6ce461a 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 fdf119382..e72650d92 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