From: Sebastián Ramírez Date: Mon, 18 Feb 2019 18:52:03 +0000 (+0400) Subject: :bookmark: Release 0.5.1: docs X-Git-Tag: 0.5.1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=88b31e6a4d74cd326bd5037fba32ce564ff2a59f;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.5.1: docs --- diff --git a/docs/release-notes.md b/docs/release-notes.md index b078cb1e7e..9096a9f3f1 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,11 +1,15 @@ ## Next +## 0.5.1 + * Add section about helping and getting help with **FastAPI**. * Add note about path operations order in docs. * Update section about error handling with more information and make relation with Starlette error handling utilities more explicit. PR #41. +* Add Development - Contributing section to the docs. PR #42. + ## 0.5.0 * Add new `HTTPException` with support for custom headers. With new documentation for handling errors at: https://fastapi.tiangolo.com/tutorial/handling-errors/. PR #35. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 7a03ddc287..7377eed3d1 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.5.0" +__version__ = "0.5.1" from .applications import FastAPI from .routing import APIRouter