Skip to content

Commit 2131af1

Browse files
authored
Merge branch 'main' into add-dates-to-release-notes
2 parents 911178f + 6eef1ff commit 2131af1

5 files changed

Lines changed: 141 additions & 112 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ dev = [
4444
]
4545
tests = [
4646
"coverage[toml]>=7.6.1",
47-
"mypy==1.19.1",
47+
"mypy==1.20.0",
4848
"pytest>=8.3.5",
4949
"ruff==0.15.8",
5050
"smokeshow>=0.5.0",

release-notes.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,15 @@
22

33
## Latest Changes
44

5+
## 0.0.6
6+
7+
### Docs
8+
9+
* 📝 Remove login command from README instructions. PR [#57](https://github.com/fastapi/fastapi-new/pull/57) by [@alejsdev](https://github.com/alejsdev).
10+
511
### Internal
612

13+
* ⬆ Bump mypy from 1.19.1 to 1.20.0. PR [#53](https://github.com/fastapi/fastapi-new/pull/53) by [@dependabot[bot]](https://github.com/apps/dependabot).
714
* ⬆ Bump ruff from 0.15.4 to 0.15.8. PR [#54](https://github.com/fastapi/fastapi-new/pull/54) by [@dependabot[bot]](https://github.com/apps/dependabot).
815
* ⬆ Bump ty from 0.0.21 to 0.0.27. PR [#55](https://github.com/fastapi/fastapi-new/pull/55) by [@dependabot[bot]](https://github.com/apps/dependabot).
916
* ⬆ Bump prek from 0.3.4 to 0.3.8. PR [#56](https://github.com/fastapi/fastapi-new/pull/56) by [@dependabot[bot]](https://github.com/apps/dependabot).

src/fastapi_new/__init__.py

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

src/fastapi_new/new.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ def _generate_readme(project_name: str) -> str:
4545
> FastAPI Cloud is currently in private beta. Join the waitlist at https://fastapicloud.com
4646
4747
```bash
48-
uv run fastapi login
4948
uv run fastapi deploy
5049
```
5150
@@ -239,7 +238,6 @@ def new(
239238
toolkit.print_line()
240239

241240
toolkit.print("[bold]Deploy to FastAPI Cloud:[/bold]")
242-
toolkit.print(" [dim]$[/dim] uv run fastapi login")
243241
toolkit.print(" [dim]$[/dim] uv run fastapi deploy")
244242

245243
toolkit.print_line()

0 commit comments

Comments
 (0)