diff --git a/docs/release-notes.md b/docs/release-notes.md
index 5d1dea978..2980e369c 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -1,7 +1,9 @@
-## Next
+## 0.2.0
* Fix typos in Security section: #24 by @kkinder
+* Add support for Pydantic custom JSON encoders: #21 by @euri10
+
## 0.1.19
* Upgrade Starlette version to the current latest `0.10.1`: #17 by @euri10
diff --git a/fastapi/__init__.py b/fastapi/__init__.py
index 5e8e2bdf2..58b724c78 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.1.19"
+__version__ = "0.2.0"
from .applications import FastAPI
from .routing import APIRouter