Skip to content

Commit 941c3fe

Browse files
chore(main): release 0.31.0
1 parent 8cf1c52 commit 941c3fe

File tree

24 files changed

+64
-57
lines changed

24 files changed

+64
-57
lines changed

CHANGELOG.md

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

3+
## [0.31.0](https://github.com/googleapis/genai-toolbox/compare/v0.30.0...v0.31.0) (2026-03-23)
4+
5+
6+
### Features
7+
8+
* Added java SDK docs ([#2675](https://github.com/googleapis/genai-toolbox/issues/2675)) ([8cf1c52](https://github.com/googleapis/genai-toolbox/commit/8cf1c52d67ac1a445c2943ba998780633a4a1ada))
9+
310
## [0.30.0](https://github.com/googleapis/genai-toolbox/compare/v0.29.0...v0.30.0) (2026-03-20)
411

512

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ To install Toolbox as a binary:
142142
>
143143
> ```sh
144144
> # see releases page for other versions
145-
> export VERSION=0.30.0
145+
> export VERSION=0.31.0
146146
> curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/linux/amd64/toolbox
147147
> chmod +x toolbox
148148
> ```
@@ -155,7 +155,7 @@ To install Toolbox as a binary:
155155
>
156156
> ```sh
157157
> # see releases page for other versions
158-
> export VERSION=0.30.0
158+
> export VERSION=0.31.0
159159
> curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/darwin/arm64/toolbox
160160
> chmod +x toolbox
161161
> ```
@@ -168,7 +168,7 @@ To install Toolbox as a binary:
168168
>
169169
> ```sh
170170
> # see releases page for other versions
171-
> export VERSION=0.30.0
171+
> export VERSION=0.31.0
172172
> curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/darwin/amd64/toolbox
173173
> chmod +x toolbox
174174
> ```
@@ -181,7 +181,7 @@ To install Toolbox as a binary:
181181
>
182182
> ```cmd
183183
> :: see releases page for other versions
184-
> set VERSION=0.30.0
184+
> set VERSION=0.31.0
185185
> curl -o toolbox.exe "https://storage.googleapis.com/genai-toolbox/v%VERSION%/windows/amd64/toolbox.exe"
186186
> ```
187187
>
@@ -193,7 +193,7 @@ To install Toolbox as a binary:
193193
>
194194
> ```powershell
195195
> # see releases page for other versions
196-
> $VERSION = "0.30.0"
196+
> $VERSION = "0.31.0"
197197
> curl.exe -o toolbox.exe "https://storage.googleapis.com/genai-toolbox/v$VERSION/windows/amd64/toolbox.exe"
198198
> ```
199199
>
@@ -206,7 +206,7 @@ You can also install Toolbox as a container:
206206
207207
```sh
208208
# see releases page for other versions
209-
export VERSION=0.30.0
209+
export VERSION=0.31.0
210210
docker pull us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:$VERSION
211211
```
212212
@@ -230,7 +230,7 @@ To install from source, ensure you have the latest version of
230230
[Go installed](https://go.dev/doc/install), and then run the following command:
231231

232232
```sh
233-
go install github.com/googleapis/genai-toolbox@v0.30.0
233+
go install github.com/googleapis/genai-toolbox@v0.31.0
234234
```
235235
<!-- {x-release-please-end} -->
236236

cmd/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.30.0
1+
0.31.0

docs/en/getting-started/colab_quickstart.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@
234234
},
235235
"outputs": [],
236236
"source": [
237-
"version = \"0.30.0\" # x-release-please-version\n",
237+
"version = \"0.31.0\" # x-release-please-version\n",
238238
"! curl -O https://storage.googleapis.com/genai-toolbox/v{version}/linux/amd64/toolbox\n",
239239
"\n",
240240
"# Make the binary executable\n",

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ To install Toolbox as a binary on Linux (AMD64):
109109

110110
```sh
111111
# see releases page for other versions
112-
export VERSION=0.30.0
112+
export VERSION=0.31.0
113113
curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/linux/amd64/toolbox
114114
chmod +x toolbox
115115
```
@@ -120,7 +120,7 @@ To install Toolbox as a binary on macOS (Apple Silicon):
120120

121121
```sh
122122
# see releases page for other versions
123-
export VERSION=0.30.0
123+
export VERSION=0.31.0
124124
curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/darwin/arm64/toolbox
125125
chmod +x toolbox
126126
```
@@ -131,7 +131,7 @@ To install Toolbox as a binary on macOS (Intel):
131131

132132
```sh
133133
# see releases page for other versions
134-
export VERSION=0.30.0
134+
export VERSION=0.31.0
135135
curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/darwin/amd64/toolbox
136136
chmod +x toolbox
137137
```
@@ -142,7 +142,7 @@ To install Toolbox as a binary on Windows (Command Prompt):
142142

143143
```cmd
144144
:: see releases page for other versions
145-
set VERSION=0.30.0
145+
set VERSION=0.31.0
146146
curl -o toolbox.exe "https://storage.googleapis.com/genai-toolbox/v%VERSION%/windows/amd64/toolbox.exe"
147147
```
148148

@@ -152,7 +152,7 @@ To install Toolbox as a binary on Windows (PowerShell):
152152

153153
```powershell
154154
# see releases page for other versions
155-
$VERSION = "0.30.0"
155+
$VERSION = "0.31.0"
156156
curl.exe -o toolbox.exe "https://storage.googleapis.com/genai-toolbox/v$VERSION/windows/amd64/toolbox.exe"
157157
```
158158

@@ -164,7 +164,7 @@ You can also install Toolbox as a container:
164164

165165
```sh
166166
# see releases page for other versions
167-
export VERSION=0.30.0
167+
export VERSION=0.31.0
168168
docker pull us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:$VERSION
169169
```
170170

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

185185
```sh
186-
go install github.com/googleapis/genai-toolbox@v0.30.0
186+
go install github.com/googleapis/genai-toolbox@v0.31.0
187187
```
188188

189189
{{% /tab %}}

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

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

docs/en/getting-started/quickstart/shared/configure_toolbox.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In this section, we will download Toolbox, configure our tools in a
1313
<!-- {x-release-please-start-version} -->
1414
```bash
1515
export OS="linux/amd64" # one of linux/amd64, darwin/arm64, darwin/amd64, or windows/amd64
16-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/$OS/toolbox
16+
curl -O https://storage.googleapis.com/genai-toolbox/v0.31.0/$OS/toolbox
1717
```
1818
<!-- {x-release-please-end} -->
1919

docs/en/how-to/connect-ide/looker_mcp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,19 +100,19 @@ After you install Looker in the MCP Store, resources and tools from the server a
100100

101101
{{< tabpane persist=header >}}
102102
{{< tab header="linux/amd64" lang="bash" >}}
103-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/linux/amd64/toolbox
103+
curl -O https://storage.googleapis.com/genai-toolbox/v0.31.0/linux/amd64/toolbox
104104
{{< /tab >}}
105105

106106
{{< tab header="darwin/arm64" lang="bash" >}}
107-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/darwin/arm64/toolbox
107+
curl -O https://storage.googleapis.com/genai-toolbox/v0.31.0/darwin/arm64/toolbox
108108
{{< /tab >}}
109109

110110
{{< tab header="darwin/amd64" lang="bash" >}}
111-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/darwin/amd64/toolbox
111+
curl -O https://storage.googleapis.com/genai-toolbox/v0.31.0/darwin/amd64/toolbox
112112
{{< /tab >}}
113113

114114
{{< tab header="windows/amd64" lang="bash" >}}
115-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/windows/amd64/toolbox.exe
115+
curl -O https://storage.googleapis.com/genai-toolbox/v0.31.0/windows/amd64/toolbox.exe
116116
{{< /tab >}}
117117
{{< /tabpane >}}
118118
<!-- {x-release-please-end} -->

docs/en/how-to/connect-ide/mssql_mcp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,19 @@ instance:
4545
<!-- {x-release-please-start-version} -->
4646
{{< tabpane persist=header >}}
4747
{{< tab header="linux/amd64" lang="bash" >}}
48-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/linux/amd64/toolbox
48+
curl -O https://storage.googleapis.com/genai-toolbox/v0.31.0/linux/amd64/toolbox
4949
{{< /tab >}}
5050

5151
{{< tab header="darwin/arm64" lang="bash" >}}
52-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/darwin/arm64/toolbox
52+
curl -O https://storage.googleapis.com/genai-toolbox/v0.31.0/darwin/arm64/toolbox
5353
{{< /tab >}}
5454

5555
{{< tab header="darwin/amd64" lang="bash" >}}
56-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/darwin/amd64/toolbox
56+
curl -O https://storage.googleapis.com/genai-toolbox/v0.31.0/darwin/amd64/toolbox
5757
{{< /tab >}}
5858

5959
{{< tab header="windows/amd64" lang="bash" >}}
60-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/windows/amd64/toolbox.exe
60+
curl -O https://storage.googleapis.com/genai-toolbox/v0.31.0/windows/amd64/toolbox.exe
6161
{{< /tab >}}
6262
{{< /tabpane >}}
6363
<!-- {x-release-please-end} -->

docs/en/how-to/connect-ide/mysql_mcp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,19 +43,19 @@ expose your developer assistant tools to a MySQL instance:
4343
<!-- {x-release-please-start-version} -->
4444
{{< tabpane persist=header >}}
4545
{{< tab header="linux/amd64" lang="bash" >}}
46-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/linux/amd64/toolbox
46+
curl -O https://storage.googleapis.com/genai-toolbox/v0.31.0/linux/amd64/toolbox
4747
{{< /tab >}}
4848

4949
{{< tab header="darwin/arm64" lang="bash" >}}
50-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/darwin/arm64/toolbox
50+
curl -O https://storage.googleapis.com/genai-toolbox/v0.31.0/darwin/arm64/toolbox
5151
{{< /tab >}}
5252

5353
{{< tab header="darwin/amd64" lang="bash" >}}
54-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/darwin/amd64/toolbox
54+
curl -O https://storage.googleapis.com/genai-toolbox/v0.31.0/darwin/amd64/toolbox
5555
{{< /tab >}}
5656

5757
{{< tab header="windows/amd64" lang="bash" >}}
58-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/windows/amd64/toolbox.exe
58+
curl -O https://storage.googleapis.com/genai-toolbox/v0.31.0/windows/amd64/toolbox.exe
5959
{{< /tab >}}
6060
{{< /tabpane >}}
6161
<!-- {x-release-please-end} -->

0 commit comments

Comments
 (0)