diff --git a/docs/release-notes.md b/docs/release-notes.md
index 70966d23..17534800 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -1,14 +1,16 @@
## Next release
+## 0.10.3
+
+* Add Gitter chat, badge, links, etc. https://gitter.im/tiangolo/fastapi
+. PR #117.
+
+* Add docs about Extending OpenAPI. PR #126.
+
* 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 docs about Extending OpenAPI. PR #126.
-
-* Add Gitter chat, badge, links, etc. https://gitter.im/tiangolo/fastapi
-. PR #117.
-
* Add note in Response Model docs about why using a function parameter instead of a function return type annotation. PR #109 by @JHSaunders.
* Fix event docs (startup/shutdown) function name. PR #105 by @stratosgear.
diff --git a/fastapi/__init__.py b/fastapi/__init__.py
index 274a1e70..be0e8c68 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