Browse Source

Merge branch 'master' into master

pull/12504/head^2
Nikita Zavadin 8 months ago
committed by GitHub
parent
commit
1e4f5886cf
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      docs/en/docs/release-notes.md
  2. 2
      fastapi/__init__.py
  3. 2
      pyproject.toml

6
docs/en/docs/release-notes.md

@ -7,6 +7,12 @@ hide:
## Latest Changes
## 0.115.3
### Upgrades
* ⬆️ Upgrade Starlette to `>=0.40.0,<0.42.0`. PR [#12469](https://github.com/fastapi/fastapi/pull/12469) by [@defnull](https://github.com/defnull).
### Docs
* 📝 Fix broken link in docs. PR [#12495](https://github.com/fastapi/fastapi/pull/12495) by [@eltonjncorreia](https://github.com/eltonjncorreia).

2
fastapi/__init__.py

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.115.2"
__version__ = "0.115.3"
from starlette import status as status

2
pyproject.toml

@ -41,7 +41,7 @@ classifiers = [
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
"starlette>=0.37.2,<0.41.0",
"starlette>=0.40.0,<0.42.0",
"pydantic>=1.7.4,!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0",
"typing-extensions>=4.8.0",
]

Loading…
Cancel
Save