diff --git a/docs/release-notes.md b/docs/release-notes.md
index 70966d239..17534800a 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -1,13 +1,15 @@
## Next release
-* Make Travis run Ubuntu Xenial (newer version) and Python 3.7 instead of Python 3.7-dev. PR #92 by @blueyed.
+## 0.10.3
-* Fix duplicated param variable creation. PR #123 by @yihuang.
+* Add Gitter chat, badge, links, etc. https://gitter.im/tiangolo/fastapi
+. PR #117.
* Add docs about Extending OpenAPI. PR #126.
-* Add Gitter chat, badge, links, etc. https://gitter.im/tiangolo/fastapi
-. PR #117.
+* Make Travis run Ubuntu Xenial (newer version) and Python 3.7 instead of Python 3.7-dev. PR #92 by @blueyed.
+
+* Fix duplicated param variable creation. PR #123 by @yihuang.
* Add note in Response Model docs about why using a function parameter instead of a function return type annotation. PR #109 by @JHSaunders.
diff --git a/fastapi/__init__.py b/fastapi/__init__.py
index 274a1e709..be0e8c68a 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.10.2"
+__version__ = "0.10.3"
from starlette.background import BackgroundTasks