diff --git a/docs/release-notes.md b/docs/release-notes.md index 18ed794cc..6e5ee8d02 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Next release +## 0.14.0 + * Improve automatically generated names of path operations in OpenAPI (in API docs). A function `read_items` instead of having a generated name "Read Items Get" will have "Read Items". PR #155. * Add docs for: Testing **FastAPI**. PR #151. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index e77c674f0..033284a0b 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.13.0" +__version__ = "0.14.0" from starlette.background import BackgroundTasks