From 58c1203f77bef31858dc3844af65b147533d83d7 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Thu, 20 Mar 2025 14:43:12 -0700 Subject: [PATCH] chore(main): release 0.2.1 (#324) :robot: I have created a release *beep* *boop* --- ## [0.2.1](https://github.com/googleapis/genai-toolbox/compare/v0.2.0...v0.2.1) (2025-03-20) ### Bug Fixes * Fix variable name in quickstart ([#336](https://github.com/googleapis/genai-toolbox/issues/336)) ([5400127](https://github.com/googleapis/genai-toolbox/commit/54001278878042aff75ed421b9fbe70008e9dd4d)) * **source/alloydb:** Correct user agents not being sent ([#323](https://github.com/googleapis/genai-toolbox/issues/323)) ([ce12a34](https://github.com/googleapis/genai-toolbox/commit/ce12a344ed6290c7c6e36ee117318c20d6fdccc2)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Yuan <45984206+Yuan325@users.noreply.github.com> --- CHANGELOG.md | 8 ++++++++ README.md | 6 +++--- cmd/version.txt | 2 +- docs/en/getting-started/introduction/_index.md | 6 +++--- docs/en/getting-started/local_quickstart.md | 2 +- 5 files changed, 16 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65dff98006..574e79a777 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.2.1](https://github.com/googleapis/genai-toolbox/compare/v0.2.0...v0.2.1) (2025-03-20) + + +### Bug Fixes + +* Fix variable name in quickstart ([#336](https://github.com/googleapis/genai-toolbox/issues/336)) ([5400127](https://github.com/googleapis/genai-toolbox/commit/54001278878042aff75ed421b9fbe70008e9dd4d)) +* **source/alloydb:** Correct user agents not being sent ([#323](https://github.com/googleapis/genai-toolbox/issues/323)) ([ce12a34](https://github.com/googleapis/genai-toolbox/commit/ce12a344ed6290c7c6e36ee117318c20d6fdccc2)) + ## [0.2.0](https://github.com/googleapis/genai-toolbox/compare/v0.1.0...v0.2.0) (2025-03-03) diff --git a/README.md b/README.md index 92f3aa95ee..a061bac7fd 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ To install Toolbox as a binary: ```sh # see releases page for other versions -export VERSION=0.2.0 +export VERSION=0.2.1 curl -O https://storage.googleapis.com/genai-toolbox/v$VERSION/linux/amd64/toolbox chmod +x toolbox ``` @@ -88,7 +88,7 @@ You can also install Toolbox as a container: ```sh # see releases page for other versions -export VERSION=0.2.0 +export VERSION=0.2.1 docker pull us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:$VERSION ``` @@ -101,7 +101,7 @@ To install from source, ensure you have the latest version of [Go installed](https://go.dev/doc/install), and then run the following command: ```sh -go install github.com/googleapis/genai-toolbox@v0.2.0 +go install github.com/googleapis/genai-toolbox@v0.2.1 ``` diff --git a/cmd/version.txt b/cmd/version.txt index 0ea3a944b3..0c62199f16 100644 --- a/cmd/version.txt +++ b/cmd/version.txt @@ -1 +1 @@ -0.2.0 +0.2.1 diff --git a/docs/en/getting-started/introduction/_index.md b/docs/en/getting-started/introduction/_index.md index 4739b0e758..7c961436bf 100644 --- a/docs/en/getting-started/introduction/_index.md +++ b/docs/en/getting-started/introduction/_index.md @@ -51,7 +51,7 @@ To install Toolbox as a binary: ```sh # see releases page for other versions -export VERSION=0.2.0 +export VERSION=0.2.1 curl -O https://storage.googleapis.com/genai-toolbox/v$VERSION/linux/amd64/toolbox chmod +x toolbox ``` @@ -62,7 +62,7 @@ You can also install Toolbox as a container: ```sh # see releases page for other versions -export VERSION=0.2.0 +export VERSION=0.2.1 docker pull us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:$VERSION ``` @@ -73,7 +73,7 @@ To install from source, ensure you have the latest version of [Go installed](https://go.dev/doc/install), and then run the following command: ```sh -go install github.com/googleapis/genai-toolbox@v0.2.0 +go install github.com/googleapis/genai-toolbox@v0.2.1 ``` {{% /tab %}} diff --git a/docs/en/getting-started/local_quickstart.md b/docs/en/getting-started/local_quickstart.md index 5aa25e29ea..d5a7104ad9 100644 --- a/docs/en/getting-started/local_quickstart.md +++ b/docs/en/getting-started/local_quickstart.md @@ -131,7 +131,7 @@ In this section, we will download Toolbox, configure our tools in a ```bash export OS="linux/amd64" # one of linux/amd64, darwin/arm64, darwin/amd64, or windows/amd64 - curl -O https://storage.googleapis.com/genai-toolbox/v0.2.0/$OS/toolbox + curl -O https://storage.googleapis.com/genai-toolbox/v0.2.1/$OS/toolbox ```