Skip to content

Commit f19ca29

Browse files
amirhcopybara-github
authored andcommitted
chore(main): release 0.3.1
PiperOrigin-RevId: 735899692
1 parent 9c0a5ca commit f19ca29

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33

4+
## 0.3.1 (2025-03-11)
5+
46
## 0.3.0 (2025-03-11)
57

68

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@google/genai",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "",
55
"main": "dist/node/index.js",
66
"module": "dist/web/index.mjs",

src/_api_client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {File, HttpOptions, HttpResponse, UploadFileConfig} from './types';
1212
const CONTENT_TYPE_HEADER = 'Content-Type';
1313
const USER_AGENT_HEADER = 'User-Agent';
1414
const GOOGLE_API_CLIENT_HEADER = 'x-goog-api-client';
15-
const SDK_VERSION = '0.3.0'; // x-release-please-version
15+
const SDK_VERSION = '0.3.1'; // x-release-please-version
1616
const LIBRARY_LABEL = `google-genai-sdk/${SDK_VERSION}`;
1717
const VERTEX_AI_API_DEFAULT_VERSION = 'v1beta1';
1818
const GOOGLE_AI_API_DEFAULT_VERSION = 'v1beta';

test/unit/live_test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ describe('live', () => {
7777
);
7878
// TODO(b/402513079): Don't hardcode the version here
7979
expect(JSON.stringify(websocketFactorySpyCall.args[1])).toBe(
80-
'{"content-type":"application/json","user-agent":"google-genai-sdk/0.3.0 undefined","x-goog-api-client":"google-genai-sdk/0.3.0 undefined"}',
80+
'{"content-type":"application/json","user-agent":"google-genai-sdk/0.3.1 undefined","x-goog-api-client":"google-genai-sdk/0.3.1 undefined"}',
8181
);
8282
// Check that the onopen callback is wrapped to call the provided callbacks
8383
// and then resolve the onopen promise. The string is not fully checked to
@@ -176,7 +176,7 @@ describe('live', () => {
176176
);
177177
// TODO(b/402513079): Don't hardcode the version here
178178
expect(JSON.stringify(websocketFactorySpyCall.args[1])).toBe(
179-
'{"content-type":"application/json","user-agent":"google-genai-sdk/0.3.0 undefined","x-goog-api-client":"google-genai-sdk/0.3.0 undefined"}',
179+
'{"content-type":"application/json","user-agent":"google-genai-sdk/0.3.1 undefined","x-goog-api-client":"google-genai-sdk/0.3.1 undefined"}',
180180
);
181181
// Check that the onopen callback is wrapped to call the provided callbacks
182182
// and then resolve the onopen promise. The string is not fully checked to

0 commit comments

Comments
 (0)