Skip to content

Commit 7d33ca5

Browse files
chore(main): release 0.6.0 (#336)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent bb9ba98 commit 7d33ca5

5 files changed

+21
-5
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.5.0"
2+
".": "0.6.0"
33
}

CHANGELOG.md

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

33

4+
## [0.6.0](https://github.com/googleapis/js-genai/compare/v0.5.0...v0.6.0) (2025-03-20)
5+
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
* Unexport Content converter functions
10+
11+
### Features
12+
13+
* add IMAGE_SAFTY enum value to FinishReason ([81ae907](https://github.com/googleapis/js-genai/commit/81ae907a997d6f2e0a98d6b06906fdcfc0bb3770))
14+
15+
16+
### Code Refactoring
17+
18+
* Separate converter functions to dedicated _{module}_converters.ts file for readability ([bb9ba98](https://github.com/googleapis/js-genai/commit/bb9ba987ffb1cd55647c0a2adaee9b7096b0b974))
19+
420
## [0.5.0](https://github.com/googleapis/js-genai/compare/v0.4.0...v0.5.0) (2025-03-20)
521

622

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@google/genai",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
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-
export const SDK_VERSION = '0.5.0'; // x-release-please-version
15+
export const SDK_VERSION = '0.6.0'; // 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';

0 commit comments

Comments
 (0)