From bc3e7f2bbc9acfcf8b6fd57854b68e1ac8a9c560 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Mon, 24 Dec 2018 09:35:20 +0400 Subject: [PATCH] :bookmark: Version bump, fixing several issues, lots of docs and tests --- fastapi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastapi/__init__.py b/fastapi/__init__.py index ef0a831db..dcb747a3a 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.12" +__version__ = "0.1.13" from .applications import FastAPI from .routing import APIRouter