diff --git a/docs/release-notes.md b/docs/release-notes.md
index 0f010a48f..aef9404b1 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -1,5 +1,7 @@
## Next release
+## 0.11.0
+
* Add `auto_error` parameter to security utility functions. Allowing them to be optional. Also allowing to have multiple alternative security schemes that are then checked in a single dependency instead of each one verifying and returning the error to the client automatically when not satisfied. PR #134.
* Update SQL Tutorial to close database sessions even when there are exceptions. PR #89 by @alexiri.
diff --git a/fastapi/__init__.py b/fastapi/__init__.py
index be0e8c68a..c585c20db 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.3"
+__version__ = "0.11.0"
from starlette.background import BackgroundTasks