Skip to content

Commit 303b5c2

Browse files
chore(main): release 1.0.0
1 parent 4564efe commit 303b5c2

File tree

24 files changed

+77
-57
lines changed

24 files changed

+77
-57
lines changed

CHANGELOG.md

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

3+
## [1.0.0](https://github.com/googleapis/genai-toolbox/compare/v0.30.0...v1.0.0) (2026-03-25)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* add a new `enable-api` flag ([#2846](https://github.com/googleapis/genai-toolbox/issues/2846))
9+
* removing deprecations and update tools-file flag ([#2806](https://github.com/googleapis/genai-toolbox/issues/2806))
10+
11+
### Features
12+
13+
* Add a new `enable-api` flag ([#2846](https://github.com/googleapis/genai-toolbox/issues/2846)) ([7a070da](https://github.com/googleapis/genai-toolbox/commit/7a070dae4f1833671649ea605f36659675d402a9))
14+
* Added java SDK docs ([#2675](https://github.com/googleapis/genai-toolbox/issues/2675)) ([8cf1c52](https://github.com/googleapis/genai-toolbox/commit/8cf1c52d67ac1a445c2943ba998780633a4a1ada))
15+
* **dataplex:** Add support for lookup context tool. ([#2744](https://github.com/googleapis/genai-toolbox/issues/2744)) ([facb69d](https://github.com/googleapis/genai-toolbox/commit/facb69d01fe0c7ff9e2e1c40804dd00762e508a6))
16+
* Removing deprecations and update tools-file flag ([#2806](https://github.com/googleapis/genai-toolbox/issues/2806)) ([ab64c95](https://github.com/googleapis/genai-toolbox/commit/ab64c9514a467d92a4547eda5a4ecdd08f86b0c9))
17+
18+
19+
### Bug Fixes
20+
21+
* **skills:** Fix integer parameter parsing through agent skills ([#2847](https://github.com/googleapis/genai-toolbox/issues/2847)) ([4564efe](https://github.com/googleapis/genai-toolbox/commit/4564efe75436b4081d9f3d1f7c912bc64c13f850))
22+
323
## [0.30.0](https://github.com/googleapis/genai-toolbox/compare/v0.29.0...v0.30.0) (2026-03-20)
424

525

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ To install Toolbox as a binary:
141141
>
142142
> ```sh
143143
> # see releases page for other versions
144-
> export VERSION=0.30.0
144+
> export VERSION=1.0.0
145145
> curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/linux/amd64/toolbox
146146
> chmod +x toolbox
147147
> ```
@@ -154,7 +154,7 @@ To install Toolbox as a binary:
154154
>
155155
> ```sh
156156
> # see releases page for other versions
157-
> export VERSION=0.30.0
157+
> export VERSION=1.0.0
158158
> curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/darwin/arm64/toolbox
159159
> chmod +x toolbox
160160
> ```
@@ -167,7 +167,7 @@ To install Toolbox as a binary:
167167
>
168168
> ```sh
169169
> # see releases page for other versions
170-
> export VERSION=0.30.0
170+
> export VERSION=1.0.0
171171
> curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/darwin/amd64/toolbox
172172
> chmod +x toolbox
173173
> ```
@@ -180,7 +180,7 @@ To install Toolbox as a binary:
180180
>
181181
> ```cmd
182182
> :: see releases page for other versions
183-
> set VERSION=0.30.0
183+
> set VERSION=1.0.0
184184
> curl -o toolbox.exe "https://storage.googleapis.com/genai-toolbox/v%VERSION%/windows/amd64/toolbox.exe"
185185
> ```
186186
>
@@ -192,7 +192,7 @@ To install Toolbox as a binary:
192192
>
193193
> ```powershell
194194
> # see releases page for other versions
195-
> $VERSION = "0.30.0"
195+
> $VERSION = "1.0.0"
196196
> curl.exe -o toolbox.exe "https://storage.googleapis.com/genai-toolbox/v$VERSION/windows/amd64/toolbox.exe"
197197
> ```
198198
>
@@ -205,7 +205,7 @@ You can also install Toolbox as a container:
205205
206206
```sh
207207
# see releases page for other versions
208-
export VERSION=0.30.0
208+
export VERSION=1.0.0
209209
docker pull us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:$VERSION
210210
```
211211
@@ -229,7 +229,7 @@ To install from source, ensure you have the latest version of
229229
[Go installed](https://go.dev/doc/install), and then run the following command:
230230

231231
```sh
232-
go install github.com/googleapis/genai-toolbox@v0.30.0
232+
go install github.com/googleapis/genai-toolbox@v1.0.0
233233
```
234234
<!-- {x-release-please-end} -->
235235

cmd/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.30.0
1+
1.0.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 = \"1.0.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=1.0.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=1.0.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=1.0.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=1.0.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 = "1.0.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=1.0.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@v1.0.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/v1.0.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/v1.0.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
@@ -109,19 +109,19 @@ After you install Looker in the MCP Store, resources and tools from the server a
109109

110110
{{< tabpane persist=header >}}
111111
{{< tab header="linux/amd64" lang="bash" >}}
112-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/linux/amd64/toolbox
112+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/linux/amd64/toolbox
113113
{{< /tab >}}
114114

115115
{{< tab header="darwin/arm64" lang="bash" >}}
116-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/darwin/arm64/toolbox
116+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/darwin/arm64/toolbox
117117
{{< /tab >}}
118118

119119
{{< tab header="darwin/amd64" lang="bash" >}}
120-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/darwin/amd64/toolbox
120+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/darwin/amd64/toolbox
121121
{{< /tab >}}
122122

123123
{{< tab header="windows/amd64" lang="bash" >}}
124-
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/windows/amd64/toolbox.exe
124+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/windows/amd64/toolbox.exe
125125
{{< /tab >}}
126126
{{< /tabpane >}}
127127
<!-- {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/v1.0.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/v1.0.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/v1.0.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/v1.0.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/v1.0.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/v1.0.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/v1.0.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/v1.0.0/windows/amd64/toolbox.exe
5959
{{< /tab >}}
6060
{{< /tabpane >}}
6161
<!-- {x-release-please-end} -->

0 commit comments

Comments
 (0)