]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release version 0.49.0 0.49.0
authorSebastián Ramírez <tiangolo@gmail.com>
Sun, 16 Feb 2020 20:11:28 +0000 (21:11 +0100)
committerSebastián Ramírez <tiangolo@gmail.com>
Sun, 16 Feb 2020 20:11:28 +0000 (21:11 +0100)
docs/release-notes.md
fastapi/__init__.py

index 62a25b354ee7816c5880f756d785b4c1e00ab689..06523c9a449cfd38ef8390c325f7e0c11c89135a 100644 (file)
@@ -1,5 +1,7 @@
 ## Latest changes
 
+## 0.49.0
+
 * Fix encoding of `pathlib` paths in `jsonable_encoder`. PR [#978](https://github.com/tiangolo/fastapi/pull/978) by [@patrickmckenna](https://github.com/patrickmckenna).
 * Add articles to [External Links](https://fastapi.tiangolo.com/external-links/): [PythonのWeb frameworkのパフォーマンス比較 (Django, Flask, responder, FastAPI, japronto)](https://qiita.com/bee2/items/0ad260ab9835a2087dae) and [[FastAPI] Python製のASGI Web フレームワーク FastAPIに入門する](https://qiita.com/bee2/items/75d9c0d7ba20e7a4a0e9). PR [#974](https://github.com/tiangolo/fastapi/pull/974) by [@tokusumi](https://github.com/tokusumi).
 * Fix broken links in docs. PR [#949](https://github.com/tiangolo/fastapi/pull/949) by [@tsotnikov](https://github.com/tsotnikov).
index 8697710a4aa043d44ce8626eae0660b64c09c697..08c2fb4c8bc0838a864775901c39a4528e1cf7f5 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.48.0"
+__version__ = "0.49.0"
 
 from starlette.background import BackgroundTasks