Skip to content

Commit 7fc701e

Browse files
Merge remote-tracking branch 'origin/main' into fix/mcp-boolean-additional-properties
2 parents cac2306 + 161f8e4 commit 7fc701e

4 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [2.5.0](https://github.com/googleapis/python-genai/compare/v2.4.0...v2.5.0) (2026-05-20)
4+
5+
6+
### Features
7+
8+
* Add Gemini 3.5 Flash model to options ([706fd02](https://github.com/googleapis/python-genai/commit/706fd021fb0e0119e0867be2267592e7709cd274))
9+
310
## [2.4.0](https://github.com/googleapis/python-genai/compare/v2.3.0...v2.4.0) (2026-05-17)
411

512

google/genai/types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16636,7 +16636,7 @@ class BatchJobOutputInfo(_common.BaseModel):
1663616636
)
1663716637
bigquery_output_table: Optional[str] = Field(
1663816638
default=None,
16639-
description="""The name of the BigQuery table created, in `predictions_<timestamp>` format, into which the prediction output is written.""",
16639+
description="""The name of the BigQuery table created, in `predictions_TIMESTAMP` format, into which the prediction output is written.""",
1664016640
)
1664116641

1664216642

@@ -16650,7 +16650,7 @@ class BatchJobOutputInfoDict(TypedDict, total=False):
1665016650
"""The full path of the Cloud Storage directory created, into which the prediction output is written."""
1665116651

1665216652
bigquery_output_table: Optional[str]
16653-
"""The name of the BigQuery table created, in `predictions_<timestamp>` format, into which the prediction output is written."""
16653+
"""The name of the BigQuery table created, in `predictions_TIMESTAMP` format, into which the prediction output is written."""
1665416654

1665516655

1665616656
BatchJobOutputInfoOrDict = Union[BatchJobOutputInfo, BatchJobOutputInfoDict]

google/genai/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414
#
1515

16-
__version__ = '2.4.0' # x-release-please-version
16+
__version__ = '2.5.0' # x-release-please-version

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools", "wheel", "twine>=6.1.0", "packaging>=24.2", "pkginfo>=
33

44
[project]
55
name = "google-genai"
6-
version = "2.4.0"
6+
version = "2.5.0"
77
description = "GenAI Python SDK"
88
readme = "README.md"
99
license = "Apache-2.0"

0 commit comments

Comments
 (0)