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