Skip to content

Commit 0d928ac

Browse files
chore(main): release 1.29.0 (#704)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 9f1f54b commit 0d928ac

File tree

7 files changed

+24
-7
lines changed

7 files changed

+24
-7
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.28.0"
2+
".": "1.29.0"
33
}

CHANGELOG.md

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

3+
## [1.29.0](https://github.com/googleapis/java-genai/compare/v1.28.0...v1.29.0) (2025-12-03)
4+
5+
6+
### Features
7+
8+
* Add empty response for tunings.cancel() ([57218f5](https://github.com/googleapis/java-genai/commit/57218f56512ac6221a72f930d95a07dac2209cf6))
9+
10+
11+
### Bug Fixes
12+
13+
* Match the versions of the Java Protobuf and Google API Common dependencies (com.google.protobuf:protobuf-java:3.25.5 & com.google.api:api-common:2.45.0) with Google Cloud Java SDKs. ([6c37f58](https://github.com/googleapis/java-genai/commit/6c37f5858f81f4bfd338c92c712d45222670e24b))
14+
15+
16+
### Documentation
17+
18+
* Recommend using response_json_schema in error messages and docstrings. ([6b952e9](https://github.com/googleapis/java-genai/commit/6b952e949d46ae9d2123045a8dd741305c50a2ce))
19+
320
## [1.28.0](https://github.com/googleapis/java-genai/compare/v1.27.0...v1.28.0) (2025-11-17)
421

522

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If you're using Maven, add the following to your dependencies:
1616
<dependency>
1717
<groupId>com.google.genai</groupId>
1818
<artifactId>google-genai</artifactId>
19-
<version>1.28.0</version>
19+
<version>1.29.0</version>
2020
</dependency>
2121
</dependencies>
2222
```

examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55

66
<groupId>com.google.genai.examples</groupId>
77
<artifactId>google-genai-examples</artifactId>
8-
<version>1.29.0-SNAPSHOT</version><!-- {x-version-update:google-genai:current} -->
8+
<version>1.29.0</version><!-- {x-version-update:google-genai:current} -->
99
<name>google-genai-examples</name>
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313
<maven.compiler.source>1.8</maven.compiler.source>
1414
<maven.compiler.target>1.8</maven.compiler.target>
1515
<!-- {x-version-update-start:google-genai:current} -->
16-
<google-genai.version>1.29.0-SNAPSHOT</google-genai.version>
16+
<google-genai.version>1.29.0</google-genai.version>
1717
<!-- {x-version-update-end} -->
1818
</properties>
1919
<build>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>com.google.genai</groupId>
77
<artifactId>google-genai</artifactId>
88
<name>google-genai</name>
9-
<version>1.29.0-SNAPSHOT</version><!-- {x-version-update:google-genai:current} -->
9+
<version>1.29.0</version><!-- {x-version-update:google-genai:current} -->
1010
<packaging>jar</packaging>
1111
<description>
1212
Java idiomatic SDK for the Gemini Developer APIs and Vertex AI APIs.

src/main/java/com/google/genai/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
abstract class ApiClient {
4949

5050
// {x-version-update-start:google-genai:released}
51-
private static final String SDK_VERSION = "1.28.0";
51+
private static final String SDK_VERSION = "1.29.0";
5252
// {x-version-update-end:google-genai:released}
5353
private static final Logger logger = Logger.getLogger(ApiClient.class.getName());
5454

versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Format:
22
# module:released-version:current-version
33

4-
google-genai:1.28.0:1.29.0-SNAPSHOT
4+
google-genai:1.29.0:1.29.0

0 commit comments

Comments
 (0)