Skip to content

Commit 12222fe

Browse files
chore(main): release 0.3.0 (#382)
🤖 I have created a release *beep* *boop* --- ## [0.3.0](v0.2.1...v0.3.0) (2025-04-04) ### Features * Add 'alloydb-ai-nl' tool ([#358](#358)) ([f02885f](f02885f)) * Add HTTP Source and Tool ([#332](#332)) ([64da5b4](64da5b4)) * Adding support for Model Context Protocol (MCP). ([#396](#396)) ([a7d1d4e](a7d1d4e)) * Added [toolbox-core](https://pypi.org/project/toolbox-core/) SDK – easily integrate Toolbox into any Python function calling framework ### Bug Fixes * Add `tools-file` flag and deprecate `tools_file` ([#384](#384)) ([34a7263](34a7263)), closes [#383](#383) --- 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: Kurtis Van Gent <[email protected]>
1 parent ea14096 commit 12222fe

File tree

6 files changed

+25
-9
lines changed

6 files changed

+25
-9
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
4+
## [0.3.0](https://github.com/googleapis/genai-toolbox/compare/v0.2.1...v0.3.0) (2025-04-04)
5+
6+
7+
### Features
8+
9+
* Add 'alloydb-ai-nl' tool ([#358](https://github.com/googleapis/genai-toolbox/issues/358)) ([f02885f](https://github.com/googleapis/genai-toolbox/commit/f02885fd4a919103fdabaa4ca38d975dc8497542))
10+
* Add HTTP Source and Tool ([#332](https://github.com/googleapis/genai-toolbox/issues/332)) ([64da5b4](https://github.com/googleapis/genai-toolbox/commit/64da5b4efe7d948ceb366c37fdaabd42405bc932))
11+
* Adding support for Model Context Protocol (MCP). ([#396](https://github.com/googleapis/genai-toolbox/issues/396)) ([a7d1d4e](https://github.com/googleapis/genai-toolbox/commit/a7d1d4eb2ae337b463d1b25ccb25c3c0eb30df6f))
12+
* Added [toolbox-core](https://pypi.org/project/toolbox-core/) SDK – easily integrate Toolbox into any Python function calling framework
13+
14+
15+
### Bug Fixes
16+
17+
* Add `tools-file` flag and deprecate `tools_file` ([#384](https://github.com/googleapis/genai-toolbox/issues/384)) ([34a7263](https://github.com/googleapis/genai-toolbox/commit/34a7263fdce40715de20ef5677f94be29f9f5c98)), closes [#383](https://github.com/googleapis/genai-toolbox/issues/383)
18+
319
## [0.2.1](https://github.com/googleapis/genai-toolbox/compare/v0.2.0...v0.2.1) (2025-03-20)
420

521

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ To install Toolbox as a binary:
7676
<!-- {x-release-please-start-version} -->
7777
```sh
7878
# see releases page for other versions
79-
export VERSION=0.2.1
79+
export VERSION=0.3.0
8080
curl -O https://storage.googleapis.com/genai-toolbox/v$VERSION/linux/amd64/toolbox
8181
chmod +x toolbox
8282
```
@@ -89,7 +89,7 @@ You can also install Toolbox as a container:
8989

9090
```sh
9191
# see releases page for other versions
92-
export VERSION=0.2.1
92+
export VERSION=0.3.0
9393
docker pull us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:$VERSION
9494
```
9595

@@ -102,7 +102,7 @@ To install from source, ensure you have the latest version of
102102
[Go installed](https://go.dev/doc/install), and then run the following command:
103103

104104
```sh
105-
go install github.com/googleapis/genai-toolbox@v0.2.1
105+
go install github.com/googleapis/genai-toolbox@v0.3.0
106106
```
107107
<!-- {x-release-please-end} -->
108108

cmd/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.1
1+
0.3.0

docs/en/getting-started/introduction/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ To install Toolbox as a binary:
5151

5252
```sh
5353
# see releases page for other versions
54-
export VERSION=0.2.1
54+
export VERSION=0.3.0
5555
curl -O https://storage.googleapis.com/genai-toolbox/v$VERSION/linux/amd64/toolbox
5656
chmod +x toolbox
5757
```
@@ -62,7 +62,7 @@ You can also install Toolbox as a container:
6262

6363
```sh
6464
# see releases page for other versions
65-
export VERSION=0.2.1
65+
export VERSION=0.3.0
6666
docker pull us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:$VERSION
6767
```
6868

@@ -73,7 +73,7 @@ To install from source, ensure you have the latest version of
7373
[Go installed](https://go.dev/doc/install), and then run the following command:
7474

7575
```sh
76-
go install github.com/googleapis/genai-toolbox@v0.2.1
76+
go install github.com/googleapis/genai-toolbox@v0.3.0
7777
```
7878

7979
{{% /tab %}}

docs/en/getting-started/local_quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ In this section, we will download Toolbox, configure our tools in a
133133
<!-- {x-release-please-start-version} -->
134134
```bash
135135
export OS="linux/amd64" # one of linux/amd64, darwin/arm64, darwin/amd64, or windows/amd64
136-
curl -O https://storage.googleapis.com/genai-toolbox/v0.2.1/$OS/toolbox
136+
curl -O https://storage.googleapis.com/genai-toolbox/v0.3.0/$OS/toolbox
137137
```
138138
<!-- {x-release-please-end} -->
139139

docs/en/getting-started/mcp_quickstart/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ In this section, we will download Toolbox, configure our tools in a
106106
<!-- {x-release-please-start-version} -->
107107
```bash
108108
export OS="linux/amd64" # one of linux/amd64, darwin/arm64, darwin/amd64, or windows/amd64
109-
curl -O https://storage.googleapis.com/genai-toolbox/v0.2.1/$OS/toolbox
109+
curl -O https://storage.googleapis.com/genai-toolbox/v0.3.0/$OS/toolbox
110110
```
111111
<!-- {x-release-please-end} -->
112112

0 commit comments

Comments
 (0)