]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release version 0.38.0.Support for Pydantic 0.32.2 and Starlette 0.12.8 0.38.0
authorSebastián Ramírez <tiangolo@gmail.com>
Sat, 31 Aug 2019 01:40:50 +0000 (20:40 -0500)
committerSebastián Ramírez <tiangolo@gmail.com>
Sat, 31 Aug 2019 01:40:50 +0000 (20:40 -0500)
docs/release-notes.md
fastapi/__init__.py

index 84df94b0730a8b5477c350cb564fe8627bb0152a..adede685e27c262f0e009425d72b0b3968b2cec4 100644 (file)
@@ -1,5 +1,7 @@
 ## Latest changes
 
+## 0.38.0
+
 * Add recent articles to [External Links](https://fastapi.tiangolo.com/external-links/) and recent opinions. PR [#490](https://github.com/tiangolo/fastapi/pull/490).
 * Upgrade support range for Starlette to include `0.12.8`. The new range is `>=0.11.1,<=0.12.8"`. PR [#477](https://github.com/tiangolo/fastapi/pull/477) by [@dmontagu](https://github.com/dmontagu).
 * Upgrade support to Pydantic version 0.32.2 and update internal code to use it (breaking change). PR [#463](https://github.com/tiangolo/fastapi/pull/463) by [@dmontagu](https://github.com/dmontagu).
index 393243f7f37d3abf5d53a3be720630c55ea50aaa..70630872dfa08c76f1a5d0b1d53e5a2acbf79eeb 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.37.0"
+__version__ = "0.38.0"
 
 from starlette.background import BackgroundTasks