Skip to content

Commit 666d963

Browse files
[auto-commit] [skip ci] Bump the build number
1 parent 1c17e4a commit 666d963

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,16 @@ We appreciate your patience while we speedily work towards a stable release of t
1212

1313
<!-- NEW CONTENT GENERATED BELOW. PLEASE PRESERVE THIS COMMENT. -->
1414

15+
### 0.74.25 (2025-04-25)
16+
17+
- The `App.include` method now returns `self` so it's possible to build up an App through chained calls:
18+
19+
```python
20+
app = modal.App("main-app").include(sub_app_1).include(sub_app_2)
21+
```
22+
23+
24+
1525
### 0.74.23 (2025-04-25)
1626

1727
- Marked some parameters in a small number of Modal functions as requiring keyword arguments (namely, `modal.App.run`, `modal.Cls.with_options`, all `.from_name` methods, and a few others). Code that calls these functions with positional arguments will now raise an error. This is expected to be minimally disruptive as the affected parameters are mostly "extra" options or positioned after parameters that have previously been deprecated.

modal_version/_version_generated.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright Modal Labs 2025
22

33
# Note: Reset this value to -1 whenever you make a minor `0.X` release of the client.
4-
build_number = 24 # git: f795616
4+
build_number = 25 # git: 1c17e4a

0 commit comments

Comments
 (0)