From fc89eb8f81dbce31e783d9d3737bca98c9c0b840 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= <tiangolo@gmail.com>
Date: Tue, 21 May 2019 23:26:28 +0400
Subject: [PATCH] :bookmark: Release version 0.23.0

---
 docs/release-notes.md | 2 ++
 fastapi/__init__.py   | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/docs/release-notes.md b/docs/release-notes.md
index abcf17be8..e76d83602 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -1,5 +1,7 @@
 ## Next release
 
+## 0.23.0
+
 * Upgrade the compatible version of Starlette to `0.12.0`.
     * This includes support for ASGI 3 (the latest version of the standard).
     * It's now possible to use [Starlette's `StreamingResponse`](https://www.starlette.io/responses/#streamingresponse) with iterators, like [file-like](https://docs.python.org/3/glossary.html#term-file-like-object) objects (as those returned by `open()`).
diff --git a/fastapi/__init__.py b/fastapi/__init__.py
index d27352161..25bb491a4 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.22.0"
+__version__ = "0.23.0"
 
 from starlette.background import BackgroundTasks