From a174f0190120302492b85b8d19955bf677175117 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 16 Mar 2019 21:24:26 +0400 Subject: [PATCH] :bookmark: Release version 0.8.0 --- docs/release-notes.md | 4 +++- fastapi/__init__.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index eb08a97bd..014f852b9 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,4 +1,6 @@ -## Next +## Next release + +## 0.8.0 * Make development scripts executable. PR #76 by @euri10. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 10c0df830..15ebe9731 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.7.1" +__version__ = "0.8.0" from .applications import FastAPI from .datastructures import UploadFile