From 88b31e6a4d74cd326bd5037fba32ce564ff2a59f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Mon, 18 Feb 2019 22:52:03 +0400 Subject: [PATCH] :bookmark: Release 0.5.1: docs --- 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 b078cb1e7..9096a9f3f 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 7a03ddc28..7377eed3d 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