Skip to content

Commit 4903ed1

Browse files
committed
🔖 Release version 0.0.5
1 parent 9b3e992 commit 4903ed1

File tree

2 files changed

+30
-5
lines changed

2 files changed

+30
-5
lines changed

release-notes.md

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,42 @@
22

33
## Latest Changes
44

5+
## 0.0.5
6+
57
### Breaking Changes
68

79
* ♻️ Add `fastapi-cli[standard]` including Uvicorn, make `fastapi-cli` and `fastapi-cli-slim` have the same packages. PR [#55](https://github.com/fastapi/fastapi-cli/pull/55) by [@tiangolo](https://github.com/tiangolo).
10+
* ➕ Keep Uvicorn in default dependencies. PR [#57](https://github.com/fastapi/fastapi-cli/pull/57) by [@tiangolo](https://github.com/tiangolo).
811

9-
### Refactors
12+
#### Summary
1013

11-
* ♻️ Simplify code in `src/fastapi_cli/discover.py`. PR [#22](https://github.com/tiangolo/fastapi-cli/pull/22) by [@pedroimpulcetto](https://github.com/pedroimpulcetto).
14+
Install with:
1215

13-
### Upgrades
16+
```bash
17+
pip install "fastapi[standard]"
18+
```
1419

15-
* ➕ Keep Uvicorn in default dependencies. PR [#57](https://github.com/fastapi/fastapi-cli/pull/57) by [@tiangolo](https://github.com/tiangolo).
20+
Or if for some reason installing only the FastAPI CLI:
21+
22+
```bash
23+
pip install "fastapi-cli[standard]"
24+
```
25+
26+
#### Technical Details
27+
28+
Before this, `fastapi-cli` would include Uvicorn and `fastapi-cli-slim` would not include Uvicorn.
29+
30+
In a future version, `fastapi-cli` will not include Uvicorn unless it is installed with `fastapi-cli[standard]`.
31+
32+
FastAPI version 0.112.0 has a `fastapi[standard]` and that one includes `fastapi-cli[standard]`.
33+
34+
Before, you would install `pip install fastapi`, or `pip install fastapi-cli`. Now you should include the `standard` optional dependencies (unless you want to exclude one of those): `pip install "fastapi[standard]"`.
35+
36+
In a future version, `fastapi-cli` will not include Uvicorn unless it is installed with `fastapi-cli[standard]`.
37+
38+
### Refactors
39+
40+
* ♻️ Simplify code in `src/fastapi_cli/discover.py`. PR [#22](https://github.com/tiangolo/fastapi-cli/pull/22) by [@pedroimpulcetto](https://github.com/pedroimpulcetto).
1641

1742
### Docs
1843

src/fastapi_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.4"
1+
__version__ = "0.0.5"

0 commit comments

Comments
 (0)