From daaf654868636e4439b3b89df40317a989f33de5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sun, 24 Feb 2019 01:49:04 +0400 Subject: [PATCH] :bookmark: Release 0.6.3: favicons in docs --- 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 b2fcb1ee2..8981ebd93 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Next +## 0.6.3 + * Add Favicons to docs. PR #53. ## 0.6.2 diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 86db578e5..6cea2d212 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.6.2" +__version__ = "0.6.3" from .applications import FastAPI from .routing import APIRouter