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