diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 091cfb12..f7014c35 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.10.0" + ".": "0.11.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 40623d22..28951b0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.11.0](https://github.com/googleapis/nodejs-agentplatform/compare/v0.10.0...v0.11.0) (2026-08-06) + + +### Features + +* Add sandbox templates and snapshots submodules to the Vertex AI GenAI SDK for JavaScript. ([63f8eb6](https://github.com/googleapis/nodejs-agentplatform/commit/63f8eb63a4db541d6e2d582f92c8012b71803c07)) +* allow users to configure max wait time for prompt management queries for Python and JS ([7a9ec5f](https://github.com/googleapis/nodejs-agentplatform/commit/7a9ec5fc9bf75789fbda8b02700f18df473ba3f8)) + ## [0.10.0](https://github.com/googleapis/nodejs-agentplatform/compare/v0.9.0...v0.10.0) (2026-07-11) diff --git a/package.json b/package.json index cf718748..6fad1a0b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@google-cloud/agentplatform", "description": "Vertex Generative AI client for Node.js", - "version": "0.10.0", + "version": "0.11.0", "license": "Apache-2.0", "author": "Google LLC", "engines": { diff --git a/src/client.ts b/src/client.ts index f530da00..aed6e0d3 100644 --- a/src/client.ts +++ b/src/client.ts @@ -9,7 +9,7 @@ import {AgentEngines} from './agentengines'; import {Skills} from './skills'; import {Prompts} from './prompts'; -export const SDK_VERSION = '0.10.0'; // x-release-please-version +export const SDK_VERSION = '0.11.0'; // x-release-please-version let agentEnginesInternalWarned = false;