From 63714dcf25eccb16b84587d24545cfbfe75807ae Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:41:19 -0800 Subject: [PATCH] chore(main): release 0.5.0 (#178) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- src/util/constants.ts | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index da59f99e..2aca35ae 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.0" + ".": "0.5.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b686d20..8365a43e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.5.0](https://github.com/googleapis/nodejs-vertexai/compare/v0.4.0...v0.5.0) (2024-02-29) + + +### Features + +* Introduce Request Timeout Configuration ([1b37f40](https://github.com/googleapis/nodejs-vertexai/commit/1b37f4045f604dac10c91ba800b34c6beadd113a)) + + +### Bug Fixes + +* correct UsageMetadata schema ([10bc676](https://github.com/googleapis/nodejs-vertexai/commit/10bc67666a64d6ea7dd103c3dae678b8080735c1)) +* include usageMetadata in stream aggregated response ([a1154c9](https://github.com/googleapis/nodejs-vertexai/commit/a1154c9a91bb5d9cd988a00be4b462ee013fa704)) + ## [0.4.0](https://github.com/googleapis/nodejs-vertexai/compare/v0.3.1...v0.4.0) (2024-02-15) diff --git a/package.json b/package.json index 3e00ff85..51ff5b03 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@google-cloud/vertexai", "description": "Vertex Generative AI client for Node.js", - "version": "0.4.0", + "version": "0.5.0", "license": "Apache-2.0", "author": "Google LLC", "engines": { diff --git a/src/util/constants.ts b/src/util/constants.ts index a47bf6bd..6d2ae9ca 100644 --- a/src/util/constants.ts +++ b/src/util/constants.ts @@ -20,7 +20,7 @@ export const USER_ROLE = 'user'; export const MODEL_ROLE = 'model'; export const FUNCTION_ROLE = 'function'; const USER_AGENT_PRODUCT = 'model-builder'; -const CLIENT_LIBRARY_VERSION = '0.4.0'; // x-release-please-version +const CLIENT_LIBRARY_VERSION = '0.5.0'; // x-release-please-version const CLIENT_LIBRARY_LANGUAGE = `grpc-node/${CLIENT_LIBRARY_VERSION}`; export const USER_AGENT = `${USER_AGENT_PRODUCT}/${CLIENT_LIBRARY_VERSION} ${CLIENT_LIBRARY_LANGUAGE}`; export const CREDENTIAL_ERROR_MESSAGE =