Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.

Commit dd44f26

Browse files
authored
Update installation.mdx
1 parent b61f8d3 commit dd44f26

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/content/docs/installation.mdx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ brew install kuzu
2828

2929
Use a tool like cURL to download the latest version of the Kùzu CLI to your local machine. Alternatively,
3030
simply copy-paste [this URL](https://github.com/kuzudb/kuzu/releases/download/v0/kuzu_cli-linux-x86_64.tar.gz)
31-
for x86-64 or [this one](https://github.com/kuzudb/kuzu/releases/download/v0.7.1/kuzu_cli-linux-aarch64.tar.gz)
31+
for x86-64 or [this one](https://github.com/kuzudb/kuzu/releases/download/v0.8.0/kuzu_cli-linux-aarch64.tar.gz)
3232
for aarch64 into your browser.
3333

3434
**x86-64**
3535

3636
```bash
37-
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.1/kuzu_cli-linux-x86_64.tar.gz
37+
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.8.0/kuzu_cli-linux-x86_64.tar.gz
3838
```
3939

4040
**aarch64**
4141

4242
```bash
43-
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.1/kuzu_cli-linux-aarch64.tar.gz
43+
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.8.0/kuzu_cli-linux-aarch64.tar.gz
4444
```
4545

4646
Double-click the `kuzu_cli-linux-*.tar.gz` file to extract a file named `kuzu`, and give it
@@ -51,11 +51,11 @@ executable permissions using the command `chmod +x kuzu`.
5151
<TabItem label="Windows">
5252

5353
Use a tool like cURL to download the latest version of the Kùzu CLI to your local machine. Alternatively,
54-
simply copy-paste [this HTTPS URL](https://github.com/kuzudb/kuzu/releases/download/v0.7.1/kuzu_cli-windows-x86_64.zip)
54+
simply copy-paste [this HTTPS URL](https://github.com/kuzudb/kuzu/releases/download/v0.8.0/kuzu_cli-windows-x86_64.zip)
5555
into your browser.
5656

5757
```bash
58-
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.1/kuzu_cli-windows-x86_64.zip
58+
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.8.0/kuzu_cli-windows-x86_64.zip
5959
```
6060

6161
Right-click on the `kuzu_cli-xxx.zip` file and click on **Extract All**. This will create a directory
@@ -142,7 +142,7 @@ The latest stable version is available on [Maven Central](https://central.sonaty
142142
<dependency>
143143
<groupId>com.kuzudb</groupId>
144144
<artifactId>kuzu</artifactId>
145-
<version>0.7.1</version>
145+
<version>0.8.0</version>
146146
</dependency>
147147
```
148148

@@ -154,7 +154,7 @@ The latest stable version is available on [Maven Central](https://central.sonaty
154154
<dependency>
155155
<groupId>com.kuzudb</groupId>
156156
<artifactId>kuzu</artifactId>
157-
<version>0.7.1</version>
157+
<version>0.8.0</version>
158158
</dependency>
159159
```
160160

@@ -166,7 +166,7 @@ The latest stable version is available on [Maven Central](https://central.sonaty
166166
<dependency>
167167
<groupId>com.kuzudb</groupId>
168168
<artifactId>kuzu</artifactId>
169-
<version>0.7.1</version>
169+
<version>0.8.0</version>
170170
</dependency>
171171
```
172172

@@ -254,7 +254,7 @@ any additional installation. You just need to specify the library search path fo
254254
<TabItem label="macOS">
255255

256256
```bash
257-
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.1/libkuzu-osx-universal.tar.gz
257+
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.8.0/libkuzu-osx-universal.tar.gz
258258
```
259259

260260
</TabItem>
@@ -264,27 +264,27 @@ curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.1/libkuzu-osx-u
264264
**x86-64**
265265

266266
```bash
267-
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.1/libkuzu-linux-x86_64.tar.gz
267+
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.8.0/libkuzu-linux-x86_64.tar.gz
268268
```
269269

270270
**aarch64**
271271

272272
```bash
273-
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.1/libkuzu-linux-aarch64.tar.gz
273+
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.8.0/libkuzu-linux-aarch64.tar.gz
274274
```
275275

276276
**x86-64** ([old ABI](https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_dual_abi.html))
277277

278278
```bash
279-
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.1/libkuzu-linux-old_abi-x86_64.tar.gz
279+
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.8.0/libkuzu-linux-old_abi-x86_64.tar.gz
280280
```
281281

282282
</TabItem>
283283

284284
<TabItem label="Windows">
285285

286286
```bash
287-
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.1/libkuzu-windows-x86_64.zip
287+
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.8.0/libkuzu-windows-x86_64.zip
288288
```
289289

290290
</TabItem>

0 commit comments

Comments
 (0)